Print Campaign letters sorted by ZIP code

Hello SDN,
we want to print out the letters of a Campaign soted by the ZIP Code. We have 6000 Business Partners in our Target Group. If we not print them sorted by ZIP Code we had to pay 0.45 Euro per letter. If we print them sorted by ZIP Code it costs us only 0.25 Euro. That are 1200 Euro in total.
Is there a BAdI or Customizing which we can set up to get the output sorted by ZIP Code? I found no setting for our communication channel "Letter with Activity creation".
Best regards
Gregor

Hello Christoph,
the print is done through a Campaign Channel. It uses a stripped down Version of smartforms build in transaction CRMD_EMAIL. There is no BAdI which I could use to influence the sorting when the printing is started during Campaign execution.
Regards
Gregor

Similar Messages

  • My 'zip code' says 'invalid' i'm from the uk and tried both with and without the space. any ideas?

    I want to register my printer but the lack of 'zip code' won't allow me to progress. A 'zip code' is a 'postcode' right? **bleep**? can someone help? I'm not a total spaz, this site is just pissing with me....... I hope. Thanks

    If the register page will not take the information then I would give HP Tech Support a call. The agent will be able to quickly setup the account and register the printer to you. It will be a rather quick process.
    In this case, it would be the most time efficient option.
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------
    I am not an HP employee.

  • Sorting addresses by zip code

    In order to do bulk mailing I need to sort addresses by zip code. I love the smart group feature, is there a way to organize groups by zip code. Thanks, Mary

    Select the items in a given group. Select Print from AB's File menu. In the dialog select Labels or Envelopes from the Style drop down menu. Click on the Label tab. You can now select Postal Code for sort order. The result may be printed to a PDF file if desired rather than to the printer, but if you plan to use labels you will need to select the appropriate type of label paper layout you will be feeding into your printer.
    Alternatively, you can export the data to a .CSV file using an exporter utility (look for them at VersionTracker or MacUpdate) then import the data into another application such as Excel or Word where they can be sorted and mail-merged.

  • ZIP Code Barcode Printing In XML publisherf

    Hi ,
    I want to the postal bar code should be type 900 for 5 digit zip code or type 905 for 9 digit zip codes in xml publisher.
    Please give me idea how to do it.
    If anybody already implemented pls call at 9399908312.
    It is very urgent
    Thanks in Advance
    -Chandra Byna

    Can you use choose or if ocndition to do it ?
    you can use string-length function to check whether 5 digit or 9 digit.
    string-length ( string )
    Returns the number of characters in the passed string.
    string-length('John Dakoyta') returns 12

  • Printing Dunning Letters using Smartforms

    Hi all,
    I have a requirement wherein I need to print dunning letters using smartforms; the dunning data are extracted in program SAPF150D2;I modified the subroutine OFI_DUN_ACT to call function module FI_PRINT_DUNNING_NOTICE_SMARTF.
    Now I need to extract the dunning data in program SAPF150D2 to be imported to my new form using GET_SF_DUNN_DATA, my question is where do I code the calling of FM GET_SFG_DUNN_DATA? I'm a little bit confused on the step by step process of the dunning data extraction to printing of the form... Thanks...

    In the INITIALIZATION of the Smartforms, after the call to  GET_SF_DUNN_DATA, you have a many informations back, of which the record of MHNK and an internal table of MHND, which you can use to select other informations from database.
    So fill or enrich your own internal table in the initialization.
    I enclose thereafter a sample to help you
    * Load data
      CALL FUNCTION 'GET_SF_DUNN_DATA'
           EXPORTING
                is_sfparam          = is_sfparam
           IMPORTING
                es_mhnk             = mhnk
                es_t001             = t001
                es_knb5             = knb5
                es_lfb5             = lfb5
                es_t047             = t047
                es_t047c            = t047c
                es_t047i            = t047i
                es_t056z            = t056z
                es_f150d            = f150d
                es_fsabe            = fsabe
                es_adrnr            = adrnr
                es_uadrnr           = uadrnr
                es_adrs             = adrs
                es_uadrs            = uadrs
                es_t047b            = t047b
                eb_testprint        = testprint
                e_langu             = langu
                e_lang2             = lang2
                es_f150d_esr        = f150d_esr
                es_paymi            = paymi
                es_paymo            = paymo
           TABLES
                t_mhnd              = th_mhnd
           EXCEPTIONS
                no_parameters_found = 1
                OTHERS              = 2.
    IF sy-subrc <> 0.
      sy-msgid = 'FM'.
      sy-msgty = 'E'.
      sy-msgno = 461.
      RAISE others.
    ENDIF.
    h_t040a-text1 = space.
    show_interest = space.
    LOOP AT th_mhnd INTO mhnd WHERE xzins = ' '.
      show_interest = 'X'.
      EXIT.
    ENDLOOP.
    * Load user information
    DATA: usr21 LIKE usr21, addr3_sel LIKE addr3_sel.
    CLEAR: usr21, addr3_sel, addr3_val, adr6.
    * Charger fiche profil
    SELECT SINGLE * FROM usr21 WHERE bname = sy-uname.
    * Récupérer l'adresse
    MOVE-CORRESPONDING usr21 TO addr3_sel.
    CALL FUNCTION 'ADDR_PERS_COMP_GET'
         EXPORTING
              address_pers_in_comp_selection = addr3_sel
         IMPORTING
              address_pers_in_comp_value     = addr3_val
         EXCEPTIONS
              OTHERS                         = 1.
    * load SMTP address
    CLEAR adr6.
    SELECT SINGLE * FROM adr6
      WHERE addrnumber = usr21-addrnumber
        AND persnumber = usr21-persnumber.
    * date format
    SET COUNTRY adrs-land1.
    * Group similar posts
    DATA: xbseg TYPE bseg,
          xbkpf TYPE bkpf,
          xpost TYPE th_outtab.
    REFRESH: t_post, t_cumul_waers.
    LOOP AT th_mhnd INTO mhnd.
    * Select lines to use
      IF mhnk-gmvdt IS INITIAL.
        IF mhnd-xzalb <> space OR mhnd-mansp <> space.
          CONTINUE.
        ELSEIF t047b-xpost NE 'X' AND mhnd-xfael <> 'X'.
          CONTINUE.
        ENDIF.
      ENDIF.
    * Map data
      CLEAR xpost.
      MOVE-CORRESPONDING mhnd TO xpost.
    * Load text from bseg
      SELECT SINGLE sgtxt INTO xpost-sgtxt FROM bseg
        WHERE bukrs EQ mhnd-bbukrs AND belnr EQ mhnd-belnr
          AND gjahr EQ mhnd-gjahr  AND buzei EQ mhnd-buzei.
      PERFORM edit_text CHANGING xpost-zuonr mhnd-xblnr xpost-sgtxt.
    * if "Payment difference" get the date of original document
      IF mhnd-bschl = '06'.
        SELECT SINGLE bldat INTO xpost-bldat
          FROM bkpf
          WHERE bukrs = mhnd-bukrs
            AND belnr = mhnd-rebzg
            AND gjahr = mhnd-rebzj.
      ENDIF.
    * Collect posts to print
      COLLECT xpost INTO t_post.
    * Collect amount per currency
      MOVE-CORRESPONDING xpost TO cumul.
      COLLECT cumul INTO t_cumul_waers.
    ENDLOOP.
    * Load customer information
    SELECT SINGLE * FROM kna1 INTO kna1
      WHERE kunnr = mhnk-kunnr.
    SELECT SINGLE * FROM knb1 INTO knb1
      WHERE bukrs = mhnk-bukrs
        AND kunnr = mhnk-kunnr.
    * Convert date to text
    PERFORM convert_date USING control_parameters-langu mhnk-laufd
      CHANGING text_date.
    PERFORM convert_date USING control_parameters-langu mhnk-prndt_before
      CHANGING text_prev.
    PERFORM convert_date USING control_parameters-langu mhnk-grdat
      CHANGING text_extr.
    Regards

  • Apple ID billing information continually adds additional digits to my zip code. This causes my credit card to be invalid, how do I fix this?

    As the title says, when I try to update my billing information the software adds additional digits to my zip code. This is all fine and dandy, it matches to where I live. But my bank only uses the standard five digits and when it adds the additional digits they will not match up correctly despite the first five being matched. This causes an endless and stupidly frustrating cycle that I cannot solve. I tried to find a phone number to call and sort this out but of course that doesn't exist. Any help would be great.

    Hi ...
    Might be something here >  iTunes Store: My credit card's security code or zip code does not match my bank's records
    And you can explain the situation to Apple here > Apple - Support - Mac App Store - Contact Support
    BTW, billing policy is the same for the iTunes and the Mac App Stores.

  • How do I display an invalid zip code in a summary table

    On my airshow website we have a feedback form, one of the questions is the zipcode where the visitor came from. This works fine. The summary results tab includes a lookup for the zipcode where I show the city associated with the zipcode and then how many responses came from that zipcode. This can be seen here http://www.hollisterairshow.com/feedback-results.php?tab=7
    In testing, I found that an invalid zipcode is not displayed in the summary table, although it is counted in the total number of responses. I'd like to display the invalid zipcode and leave the City blank, or maybe put "Invalid zip code". The current code is displayed below, it's beyond my ability to figure out how I should change it to display invalid zipcodes and I'd really appreciate some direction on this.
    I know I could validate the zipcode on entry but it's quite possible the zipcode table I have is out of date and i can't find a free downloadable list, so I'm thinking anything invalid could cause me to update my table.which is fine.
    Thanks for any assistance.
    Tony
    <div class="TabbedPanelsContent">
    <?php
    // Make a MySQL Connection
    $query = "SELECT feedback.zip, COUNT(feedback.zip), zipcodes.citystate FROM feedback, zipcodes WHERE feedback.zip = zipcodes.zipcode GROUP BY feedback.zip";
    $result = mysql_query($query) or die(mysql_error());
    // Print out result
    while($row = mysql_fetch_array($result))
    echo $row['zip']. " ". $row['COUNT(feedback.zip)']. " ". $row['citystate'];
    echo "<br />";
    ?>
    </div>

    Use an outer join on the two tables so that results are returned for all feedback rows, instead of just matching rows. The column zipcodes.citystate will be NULL. In your recordset output, you can test for null in the column and populate it with "Invalid Zipcode" if you want.
    You'll need to move the join to the FROM clause as I believe that MySQL does not support outer joins in the WHERE clause like most other DBMS's.

  • Safari 2.0 zip code bug?

    This is a problem I've started to notice on a bunch of webpages (including newegg.com) with Safari 2.0. Many times Safari will not let me enter my zip code into an HTML form field because it starts with a zero (like about half the zip codes in the U.S. northeast). Let us say my zip code is 02142 -- when I enter it in, Safair "autocorrects" it to "2142" after the control loses focus. Nothing seems to undo this, and I can't find any setting that fixes it. So the site I submit it to says, "Hey, that's not a valid zip code!" I've tried it with Firefox and Internet Explorer and neither seem to do this behavior (so I often have to leave whatever transaction I was trying to go through, open up Internet Explorer, and re-do the entire transaction -- all because Safari doesn't trust me to know what I want to type in).
    The HTML code from newegg.com which is doing this: <input name="zipcode1" type="text" size="4" maxlength="5" value=""> So it's nothing in particular about the form coding that I can tell -- it looks like Safari is just assuming that because I'm typing in a number, I can't possibly want it to start with a zero. Which is just ridiculous in a large number of contexts.
    Any way to turn this off? It is really getting irritating, and it's the sort of "application knowing what I want to do better than I do" idiocy which I think of being exclusively in the domain of Microsoft products. Which ironically don't seem to have this problem!
    NOTE: I am not using an Autofill zip code. I am just trying to enter it in manually.

    I can confirm this bug (isn't it irritating?). One solution is to use another browser; I've never had this problem in Firefox. Another would be to turn off AutoFill; even though you're not using an AutoFill entry, AutoFill seems to have this unfortunate effect on leading zeros entered manually.
    Next time you run across a page that won't take your zip code, click on Safari/Report bugs to Apple and send a bug report. Maybe if enough of us on the East Coast complain, someone will fix it.

  • We are unable to have iPhoto books shipped into Canada, because the shipping address field will only accept US zip codes. Any solutions?

    We are unable to have iPhoto books shipped into Canada because the shipping address field will only accept US zip codes. Any solutions?

    Have you set the Print Products Store to Canada in the iPhoto Preferences > Advanced Panel? 
    This determines the address format.
    And your billing address and shipping address must be in the same country, as defined for your AppleID and credit card.

  • Format column in Numbers for zip code

    how do I get a leading zero for zip codes??

    start by selecting the cell(s) yu want to format, then go to the Format menu and choose Create Custom Cell Format:
    In the dialogue that opens:
    Edit the name to reflect the use to which this format will be placed.
    Leave the type as Numbers & Text
    Note the example (orange circle) showing how a number will appear under the curent format.
    Click the white triangle (see arrow) in the Integer tablet (red circle) to open the options menu.
    Take three trips to the options menu:
    Choose Hide Separator
    Choose Show Zeros for Unused Digits
    Choose Add Digit
    Click OK to return to the document.
    Note that this will work for the original five digit Zip codes. Extended five-four codes will be treated as text, as can be seen in the image above. and will not sort correctly (see column D of left table below). For correct sorting, format the column as text and enter the Zip codes including the leading zeros, as has been done in the single column on the right (before the column was sorted into the displayed order).
    Regards,
    Barry

  • Need an Exit  to find ZIP code of Delivery address in PO.

    Hi Experts,
    I am an abaper & i am tryin to connect Taxwar & SAP during the prcess of PO creation.
    Now my req is to find if the plant address & the Delivery address are different ( need to compare the ZIP codes).
    Can anyone sugget an exit where i can do thi comparison?
    regards,
    Kevin.

    Hi kevin,
    Use the below given code, after executing this it will ask the transaction code of which u are requiring exit, give the tcode over there u can get exits available for that tcode.
    ABLES : tstc, "SAP Transaction Codes
             tadir, "Directory of Repository Objects
           modsapt, "SAP Enhancements - Short Texts
            modact, "Modifications
             trdir, "System table TRDIR
             tfdir, "Function Module
           enlfdir, "Additional Attributes for Function Modules
            tstct, "Transaction Code Texts
           RSSTCD,
            TRKEY.
    *& Definition of Types                                                  *
    TYPES: BEGIN OF t_badi_list,
                    obj_name TYPE sobj_name ,
                    devclass TYPE devi_class ,
                     dlvunit TYPE dlvunit,
                    imp_name TYPE exit_imp ,
                    packname TYPE devclass ,
                    dlvunit2 TYPE dlvunit,
                        text TYPE sxc_attrt-text,
          END OF t_badi_list.
    TYPES: BEGIN OF t_badi_list2,
                    obj_name TYPE sobj_name ,
                    devclass TYPE devi_class ,
                     dlvunit TYPE dlvunit,
           END OF t_badi_list2.
    *& Data Declaration                                                     *
    DATA: lt_badi_list TYPE TABLE OF t_badi_list,
         lt_badi_list2 TYPE TABLE OF t_badi_list2,
          ls_badi_list TYPE t_badi_list OCCURS 0 WITH HEADER LINE,
         ls_badi_list2 TYPE t_badi_list2.
    RANGES: r_badi FOR tadir-obj_name ,
           rt_badi FOR tadir-obj_name .
    *& Variables                                                            *
    DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE,
        P_TRKEY LIKE TRKEY.
    DATA : field1(30),
           BADINAME(20),
           COUNT TYPE P.
    DATA : v_devclass LIKE tadir-devclass,
          p_devclass LIKE tadir-devclass,
          p_old_langu LIKE sy-langu,
          p_mod_langu LIKE sy-langu.
    *& Selection Screen Parameters                                          *
    SELECTION-SCREEN BEGIN OF BLOCK a01 WITH FRAME TITLE text-001.
    SELECTION-SCREEN SKIP.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN END OF BLOCK a01.
    *& Start of report                                                      *
    START-OF-SELECTION.
    Validate Transaction Code
    SELECT SINGLE * FROM tstc WHERE tcode EQ p_tcode.
    *Find Repository Objects for transaction code
    IF sy-subrc EQ 0.
      SELECT SINGLE * FROM tadir WHERE pgmid = 'R3TR'
                                  AND object = 'PROG'
                                AND obj_name = tstc-pgmna.
      MOVE: tadir-devclass TO v_devclass.
      IF sy-subrc NE 0.
    This section is used if a FGR is involved\!
        CALL FUNCTION 'RS_ACCESS_PERMISSION'
             EXPORTING
                   global_lock = 'X'
                        object = p_tcode
                  object_class = 'TRAN'
                          mode = 'SHOW'
             language_upd_exit = 'RS_TRANSACTION_LANGUAGE_EXIT'
       suppress_language_check = space
            IMPORTING
           new_master_language = p_old_langu
         modification_language = p_mod_langu
                 transport_key = p_trkey
                      devclass = p_devclass
           EXCEPTIONS
              canceled_in_corr = 1
                        OTHERS = 2.
        IF SY-SUBRC = 0. " Success
          MOVE: p_devclass TO v_devclass.
        ELSE. " For the case that nothing is found\!
          SELECT SINGLE * FROM trdir WHERE name = tstc-pgmna.
          IF trdir-subc EQ 'F'.
            SELECT SINGLE * FROM tfdir WHERE pname = tstc-pgmna.
            SELECT SINGLE * FROM enlfdir WHERE funcname = tfdir-funcname.
            SELECT SINGLE * FROM tadir WHERE pgmid = 'R3TR'
                                        AND object = 'FUGR'
                                      AND obj_name = p_devclass.
            MOVE: tadir-devclass TO v_devclass.
          ENDIF.
        ENDIF.
      ENDIF.
    *Find SAP Modifactions
        SELECT * FROM tadir INTO TABLE jtab
                            WHERE pgmid = 'R3TR'
                             AND object = 'SMOD'
                           AND devclass = v_devclass.
        SELECT SINGLE * FROM tstct WHERE sprsl EQ sy-langu
                                     AND tcode EQ p_tcode.
        FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
        WRITE:/(19) 'Transaction Code - ', 20(20) p_tcode, 45(50) tstct-ttext.
        FORMAT COLOR COL_POSITIVE INTENSIFIED ON.
        SKIP.
        WRITE:/1 'The application area is:', v_devclass.
        SKIP.
        IF NOT jtab[] IS INITIAL.
          WRITE:/(95) sy-uline.
          FORMAT COLOR COL_HEADING INTENSIFIED ON.
          WRITE:/1 sy-vline, 2 'Exit Name', 21 sy-vline, 22 'Description', 95 sy-vline.
          WRITE:/(95) sy-uline.
          LOOP AT jtab.
            SELECT SINGLE * FROM modsapt
                           WHERE sprsl = sy-langu
                              AND name = jtab-obj_name.
            FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
            WRITE:/1 sy-vline, 2 jtab-obj_name HOTSPOT ON, 21 sy-vline , 22 modsapt-modtext,
            95 sy-vline.
          ENDLOOP.
          WRITE:/(95) sy-uline.
          DESCRIBE TABLE jtab.
          SKIP.
          FORMAT COLOR COL_TOTAL INTENSIFIED ON.
          WRITE:/ 'No of Exits:' , sy-tfill.
          SKIP.
          WRITE:/(83) sy-uline.
          FORMAT COLOR COL_HEADING INTENSIFIED ON.
          WRITE:/1 sy-vline, 2 'Badi Name', 22 sy-vline, 23 'Description', 83 sy-vline.
          WRITE:/(83) sy-uline.
    select the BAdI Definitions from the tables sxc_exit and sxc_attr
          SELECT tobj_name tdevclass tcdlvunit sximp_name sat~text
                       INTO CORRESPONDING FIELDS OF TABLE lt_badi_list
                       FROM ( ( ( ( tadir AS t
                       INNER JOIN
                         tdevc AS tc ON tdevclass = tcdevclass )
                       INNER JOIN
                         sxc_exit AS sx ON sxexit_name = tobj_name )
                       INNER JOIN
                         sxc_attr AS sa ON sximp_name = saimp_name )
                       INNER JOIN
                         sxc_attrt AS sat ON sximp_name = satimp_name )
                       WHERE t~pgmid = 'R3TR'
                       AND t~object = 'SXSD' "means BAdI
                       AND t~devclass = v_devclass "narrow down seach with Dev.Class
                       AND sat~sprsl = sy-langu.
          SORT lt_badi_list.
          DELETE ADJACENT DUPLICATES FROM lt_badi_list.
    create Ranges
          LOOP AT lt_badi_list INTO ls_badi_list .
            r_badi-sign = 'I' .
            r_badi-option ='EQ' .
            r_badi-low = ls_badi_list-imp_name .
            r_badi-high = ls_badi_list-imp_name .
            APPEND r_badi TO rt_badi .
          ENDLOOP.
    select the implementations
          SELECT tobj_name tdevclass tc~dlvunit
                INTO CORRESPONDING FIELDS OF TABLE lt_badi_list2
                FROM tadir AS t
                INNER JOIN
                  tdevc AS tc ON tdevclass = tcdevclass
                FOR ALL ENTRIES IN rt_badi
                WHERE t~obj_name = rt_badi-low
                AND t~pgmid = 'R3TR'
                AND t~object = 'SXCI'.
          FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
          WRITE:/(83) sy-uline.
          COUNT = '0'.
          LOOP AT lt_badi_list INTO ls_badi_list .
            WRITE:/1 sy-vline, 2 ls_badi_list-obj_name HOTSPOT ON, 22 sy-vline,
                  23 ls_badi_list-text, 83 sy-vline.
            COUNT = COUNT + 1.
          ENDLOOP.
          WRITE:/(83) sy-uline.
          DESCRIBE TABLE ls_badi_list.
          SKIP.
          FORMAT COLOR COL_TOTAL INTENSIFIED ON.
          WRITE:/ 'No of BADIs:' , COUNT.
        ELSE.
          FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
          WRITE:/(95) 'No User Exit exists'.
        ENDIF.
      ELSE.
        FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
        WRITE:/(95) 'Transaction Code Does Not Exist'.
      ENDIF.
    *& Call SMOD or SE18 to lead the user to the selected exit or badi      *
    AT LINE-SELECTION.
    GET CURSOR FIELD field1.
    IF field1(4) EQ 'JTAB'.
      SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
      CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    ELSEIF field1(12) EQ 'LS_BADI_LIST'.
      CALL FUNCTION 'SXO_BADI_SHOW'
           EXPORTING
             EXIT_NAME = sy-lisel+1(20)
           EXCEPTIONS
             ACTION_CANCELED
             ACCESS_FAILURE
             BADI_NOT_EXIXTING.
    ELSE.
    ENDIF.
    Regards
    Arani Bhaskar

  • Zip code not reconized

    on my bank records my zip code has changed because they have decided to give everyone living in my area new zip codes, but itunes dosen't reconize it as a real zip code everytime i enter it.
    anyone else having this problem?
      Windows Vista  

    I'm in, err, was in 85296, and I'm getting the same error. This sort of thing annoys me to no end. I have a gift card that I can't use and Apple is missing the boat on my purchases on this and any other ones I've would have made these last few weeks.
    Not good on Apple's part. Not good at all.
    I've been an Mac user since before System 7, and the utter lack of support options on this is frustrating to no end.

  • Bar codes for zip codes

    Will Pages 09 print bar codes for zip codes?
    <Edited by Moderator>

    I use the free Dashboard widget, EasyEnvelopes, that can print the USPS bar code for the entered address.

  • Address Book Not Importing Zip Codes

    When importing a a tab-delimited txt file into Address book everthing comes through fine. Except. Address Book automatically removes the first number in the zip code if starts with a zero. Leaving a 4 digit zip that is invalid. So what should be 07712 ends up 7712. Which this may not be a bother if you are importing a few addresses. I had over 700 to import, which I had to go through one by one and correct. As I need the for mailings, that I print out on avery labels, in addition to the other contac info. I've read about people having problems in the auto fill in Safari not bringing in the zero from the users vcard.
    Has anyone experience this problem? Has / is Apple addressing it? Answer. Not if your zip code starts with a zer0. Thanks.
    Imac   Mac OS X (10.4.1)  

    This is a common occurance when text files have been processed by spreadsheets. Unless you make special provisions to preserve them, leading zeros are normally stripped off of the data stored in cells.
    It's not the Address Book import that's the problem - it's your source file.

  • When I do a mail merge using an excel document it transfers correctly except the Zip Code part

    I have a Word Document that I use to send out advertising letters in the mail. I get the information from an excel spreadsheet that i put together and it usually works out fine but recently after i have done the mail merge the Zip Code is not coming out.
    It only shows as a zero "0". 
    I have maybe around 200 letters that i send out every week and after like the 1st 10 pages the merge doesn't work on the Zip Code.
    Could you please let me know what I can do to fix it?
    Both the Word and Excel Versions are 2007
    Thanks!
    Cynthia.

    One thing I have done before when getting similar issues is changing the "ZipCode" field to a text field instead of a
    number field. This is done in the field properties.
    Don't forget to mark the post that solved your issue as &quot;Answered.&quot; By marking the Answer you are enabling users with similar issues to find what helped you. Lewis Renwick - IT Professional

Maybe you are looking for

  • Location Of Audio Headphone Jack

    Hello, I have a Toshiba Laptop Satellite L875D-S7332. I want to buy an Audio Head Phone so that no one else but me hears the laptops audio sound. Problem is i don't know what head phone to buy and where on my laptop is the jack to connect it to! Can

  • WSUS database too large.

    Run this from power shell: (Be sure and fill in the appropriate values that are in Text#Upstream WSUS server to cleanup and retrieve downstream servers to cleanup$WsusUpstreamServer = ""$UseSSL = $false$PortNumber = $TrialRun = $false#E-mail Configur

  • Side-by-side pages on full screen mode

    With adobe reader 8.1.x for Linux (Ubuntu 8.04), you can visualize side-by-side pages in full screen mode. With reader 9.1.2, you can't. When you click on "side-by-side page" button, then "full screen" button, the program returns to "single page" vis

  • Can't unistall firefox keep saying it is open even when it is not

    keeps telling me its open when its not it is keeping me from completing my on line course which is do today

  • Video player or converter for mac

    My friend sent me a mpg file over msn and I cannot get it to play in quicktime. I moved it onto a friends pc and it played fine. I looked into it on google and found that apple do a mpeg2 plugin for quicktime but it seems a little pricy just for one