Multiple data merges on one page

I have created a postcard that I need to be sent out to clients. To save money, we have put three postcards on one 12 x 18 sheet of paper. I am trying to put three data merges on each sheet for customers addresses. Is this possible? I can provide an image if necessary.

Hi ryaniscreative,
This is absolutely possible, I do this often for variable data nametags on Avery labels. However, our printer should be able to automatically get this done for you if you are printing this digitally. Our Cannon printers have the capability position files (front and back) 2-up, 3-up, etc. I am sure this is the case for most digital printers on the market. Ask your printer and they should do this automatically, in which case you would build the file at full-size and Data Merge as normal.
Never-the-less, here is how to do it manually:
1. Create your 12" x 18" document in InDesign CC(2014).
2. Drag your postcard art into the 12" x 18" document and create Crop Marks manually for this postcard template art.
3. Position this postcard template art to the upper left corner of the document.
4. Map all of your variables as normal to this one postcard template art on both pages to your .CSV file.
5. In your Data Merge Palette, and in the Drop Down Menu in the Upper Right Corner, select Create Merged Document.
6. Under the Records for Document Page section, select Multiple Records and then at the bottom of the dialog box select Preview Multiple Record Layout.
7. Click on the Multiple Record Layout tab.
8. Adjust the margins and column spacing in the dialog boxes according to your intent of positioning and the specs of the design.
9. Hit OK to have InDesign begin creating a merged document out of all of your list variables.**
**If you want to simply generate a PDF then in Step 5, instead of selecting Create Merged Document, hit Export to PDF.
NOTE: This can only be done with a one-sided design. If you need to print graphics on the other side of the postcard (for mailing purposes of course) you will have to do this process again exactly the same way, in a separate InDesign document and then manually create new pages between the existing front side pages and paste in place, from one InDesign document to the other.

Similar Messages

  • Address book field, multiple address merge on one page.

    OK, after spending half a day tying to resolve this issue, I have given up. I do need to do this one way or another. Appreciate any help at hand.
    I need to create a list of company info from address book into pages. problem is if I 'insert address book field' say 'company name' twice and do a merge, Pages drag the same name in twice and not the next address merge. but does put it on the next page, no good need at least 5 different address on one page.
    Guy

    You are responsible of the spent time.
    Pages never claims that it is designed to fill pages with different labels.
    It claims that it is able to merge address in documents which is definitely not the same thing.
    The Apple's tool dedicated to label printing is AddressBook.
    The one dedicated to merge from AddressBook is Pages.
    Details available in PDF User Guide page 217
    and in the Help's page entitled: "Using Address Book Fields" (I got it searching for "merge").
    Yvan KOENIG (from FRANCE jeudi 14 août 2008 15:09:28)

  • How to use multiple Spry Data Sets in one page

    I'm using two spry data sets in one page. When I add the first spry data set to my page everything runs OK, When I add the second spry data set to the page the first data set stops working. Does anyone know what the problem is?
    This is how I have my data sets listed.
    var ds1 = new Spry.Data.HTMLDataSet("/accounts/tower/list.php", "list");
    var ds2 = new Spry.Data.HTMLDataSet("/accounts/tower/numvisits.php", "chart");
    Thanks, let me know if you need more information.

    Good News!
    There is nothing wrong with what you have shown.
    Bad news!
    The problem could be in that part that you have not shown.
    Gramps

  • Multiple ALV reports on one page

    How to display multiple ALV reports on one page.

    this done by this code....
    *& Report  ZPR_02
    REPORT  ZPR_02.
    TYPE-POOLS: SLIS.
    Tables Declaration.
    TABLES: MARA.
    *Internal tables and data declaration.
    DATA: BEGIN OF IT_MARA OCCURS 0,
            MATNR LIKE MARA-MATNR,
            MTART LIKE MARA-MTART,
            MBRSH LIKE MARA-MBRSH,
          END OF IT_MARA,
          BEGIN OF IT_MARC OCCURS 0,
            MATNR LIKE MARC-MATNR,
            WERKS LIKE MARC-WERKS,
            EKGRP LIKE MARC-EKGRP,
          END OF IT_MARC,
          BEGIN OF IT_MARD OCCURS 0,
            MATNR LIKE MARD-MATNR,
            WERKS LIKE MARD-WERKS,
            LGORT LIKE MARD-LGORT,
            LABST LIKE MARD-LABST,
          END OF IT_MARD.
    DATA: WA_FIELD_CAT TYPE SLIS_FIELDCAT_ALV,
          IT_FIELD_CAT1 TYPE SLIS_T_FIELDCAT_ALV,
          IT_FIELD_CAT2 TYPE SLIS_T_FIELDCAT_ALV,
          IT_FIELD_CAT3 TYPE SLIS_T_FIELDCAT_ALV,
          WA_KEYINFO TYPE SLIS_KEYINFO_ALV,
          IT_LAYOUT TYPE SLIS_LAYOUT_ALV,
          IT_EVENTS1    TYPE SLIS_T_EVENT WITH HEADER LINE,
          IT_EVENTS2    TYPE SLIS_T_EVENT WITH HEADER LINE,
          IT_EVENTS3    TYPE SLIS_T_EVENT WITH HEADER LINE.
    *Selection Screen.
    SELECT-OPTIONS: S_MATNR FOR MARA-MATNR.
    *Start Of selection.
    START-OF-SELECTION.
    *Selecting the data.
      PERFORM SELECT_DATA.
    *Populating the field catelogue.
      PERFORM BUILD_FIELD_CAT.
    *Displaying the final output.
      PERFORM DISPLY_OUTPUT.
    *&      Form  Select_data
          Selecting the data.
    FORM SELECT_DATA .
      SELECT MATNR
             MTART
             MBRSH FROM MARA
           INTO TABLE IT_MARA
           WHERE MATNR IN S_MATNR.
      IF NOT IT_MARA[] IS INITIAL.
        SELECT MATNR
               WERKS
               EKGRP FROM MARC
             INTO TABLE IT_MARC
             FOR ALL ENTRIES IN IT_MARA
             WHERE MATNR EQ IT_MARA-MATNR.
      ENDIF.
      IF NOT IT_MARC[] IS INITIAL.
        SELECT MATNR
               WERKS
               LGORT
               LABST FROM MARD
             INTO TABLE IT_MARD
             FOR ALL ENTRIES IN IT_MARC
             WHERE MATNR = IT_MARC-MATNR
             AND   WERKS = IT_MARC-WERKS.
      ENDIF.
    ENDFORM.                    " Select_data
    *&      Form  Build_field_cat
         Populating the field catelogue.
    FORM BUILD_FIELD_CAT .
      DEFINE M_FIELDCAT1.
        WA_FIELD_CAT-TABNAME = &1.
        WA_FIELD_CAT-FIELDNAME = &2.
        WA_FIELD_CAT-SELTEXT_L = &3.
        APPEND WA_FIELD_CAT TO IT_FIELD_CAT1.
      END-OF-DEFINITION.
      DEFINE M_FIELDCAT2.
        WA_FIELD_CAT-TABNAME = &1.
        WA_FIELD_CAT-FIELDNAME = &2.
        WA_FIELD_CAT-SELTEXT_L = &3.
        APPEND WA_FIELD_CAT TO IT_FIELD_CAT2.
      END-OF-DEFINITION.
      DEFINE M_FIELDCAT3.
        WA_FIELD_CAT-TABNAME = &1.
        WA_FIELD_CAT-FIELDNAME = &2.
        WA_FIELD_CAT-SELTEXT_L = &3.
        APPEND WA_FIELD_CAT TO IT_FIELD_CAT3.
      END-OF-DEFINITION.
      M_FIELDCAT1 'MARA' 'MATNR' 'Material No'.
      M_FIELDCAT1 'MARA' 'MTART' 'Material type'.
      M_FIELDCAT1 'MARA' 'MBRSH' 'Industry Sector'.
      M_FIELDCAT2 'MARC' 'MATNR' 'Material No'.
      M_FIELDCAT2 'MARC' 'WERKS' 'Plant'.
      M_FIELDCAT2 'MARC' 'EKGRP' 'Purchasing Group'.
      M_FIELDCAT3 'MARD' 'MATNR' 'Material No'.
      M_FIELDCAT3 'MARD' 'WERKS' 'Plant'.
      M_FIELDCAT3 'MARD' 'LGORT' 'Storage Loc'.
      M_FIELDCAT3 'MARD' 'LABST' 'Valued Stock'.
      IT_EVENTS1-NAME  =  'TOP_OF_PAGE'.
      IT_EVENTS1-FORM  =  'F_TOP_OF_PAGE_ONE'.
      APPEND IT_EVENTS1.
      CLEAR IT_EVENTS1.
      IT_EVENTS2-NAME  =  'TOP_OF_PAGE'.
      IT_EVENTS2-FORM  =  'F_TOP_OF_PAGE_TWO'.
      APPEND IT_EVENTS2.
      CLEAR IT_EVENTS2.
      IT_EVENTS3-NAME  =  'TOP_OF_PAGE'.
      IT_EVENTS3-FORM  =  'F_TOP_OF_PAGE_THREE'.
      APPEND IT_EVENTS3.
      CLEAR IT_EVENTS3.
    ENDFORM.                    " Build_field_cat
    *&      Form  disply_output
         Displaying the final output.
    FORM DISPLY_OUTPUT .
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
        EXPORTING
          I_CALLBACK_PROGRAM = SY-REPID.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          IS_LAYOUT                        = IT_LAYOUT
          IT_FIELDCAT                      = IT_FIELD_CAT1[]
          I_TABNAME                        = 'IT_MARA'
          IT_EVENTS                        = IT_EVENTS1[]
      IT_SORT                          = IT_SORT
      I_TEXT                           = ' '
        TABLES
          T_OUTTAB                         = IT_MARA     .
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          IS_LAYOUT                        = IT_LAYOUT
          IT_FIELDCAT                      = IT_FIELD_CAT2[]
          I_TABNAME                        = 'IT_MARC'
          IT_EVENTS                        = IT_EVENTS2[]
      IT_SORT                          = IT_SORT
      I_TEXT                           = ' '
        TABLES
          T_OUTTAB                         = IT_MARC    .
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          IS_LAYOUT                        = IT_LAYOUT
          IT_FIELDCAT                      = IT_FIELD_CAT3[]
          I_TABNAME                        = 'IT_MARD'
          IT_EVENTS                        = IT_EVENTS3[]
      IT_SORT                          = IT_SORT
      I_TEXT                           = ' '
        TABLES
          T_OUTTAB                         = IT_MARD    .
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK             = ' '
      IS_PRINT                      = IS_PRINT
      I_SCREEN_START_COLUMN         = 0
      I_SCREEN_START_LINE           = 0
      I_SCREEN_END_COLUMN           = 0
      I_SCREEN_END_LINE             = 0
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER       = E_EXIT_CAUSED_BY_CALLER
      ES_EXIT_CAUSED_BY_USER        = ES_EXIT_CAUSED_BY_USER
    EXCEPTIONS
      PROGRAM_ERROR                 = 1
      OTHERS                        = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " disply_output
    *&      Form  top_of_page_one
          text
    FORM F_TOP_OF_PAGE_ONE.
      WRITE: / 'Header details (MARA)'.
    ENDFORM.                    "top_of_page_one
    *&      Form  top_of_page_one
          text
    FORM F_TOP_OF_PAGE_TWO.
      WRITE: / 'Item details (MARC)'.
    ENDFORM.                    "top_of_page_one
    *&      Form  top_of_page_one
          text
    FORM F_TOP_OF_PAGE_THREE.
      WRITE: / 'Item details (MARD)'.
    ENDFORM.                    "top_of_page_one
    regards,
    venkat.

  • Can i have multiple applications open on one page

    can i have multiple applications open on one page?

    JShimazaki wrote:
    Mac OS X Mountain Lion supports multitasking like cbs20 mentioned. Just like MS Windows just press alt+tab to switch to whatever applications you have open.
    Actually it isn't Alt-Tab on OS X, it's Command-Tab to use the Application Switcher.
    Also, Control+ left/right arrow key will switch spaces if that's what's desired.

  • How can I make multiple popup links on one page?

    I was wondering if anyone had a simple code that will allow me to have multiple popup links on one page? I have no idea what to do.  Any help would be greatly appreciated.

    Give each an individual id like:
    <SCRIPT language="JavaScript1.2">
    function openwindow1()
    window.open("score_popup/wbc_slalom_running_order.html",
    "mywindow","location=1,status=1,scrollbars=1,width=600,height=525");
    .......... etc.
    and then:
    <p><a href="javascript: openwindow1()">WBC Invitational Slalom Event Running Order</a></p>
    View actual working page here:
    http://www.worldbarefootcenter.com/
    scroll to bottom of page to see pop-up links. View source code for complete details:
    Best wishes,
    Adninjastrator

  • Make Data Merge import certain page of pdf or indesign document

    I don't know if it is possible but can you make Data Merge import certain page of pdf or indesign document, this would be great addition for indesign

    Here are a couple of questions that might help understand what might need to be done to achieve your request:
    * How do you propose to identify the desired page(s) within a PDF and an ID document, so the merge field placeholder knows how to find it?
    * How do you propose to keep track of the page if they're re-ordered in an updated document?
    * What if the identification marker is within text and flows to a different page - would you want to retrieve the original page (before the reflow) or the new page to which the marker would have flowed?
    Perhaps the scripters could comment on the possibility of scripting these.
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices
    aybekDes wrote:
    I don't know if it is possible but can you make Data Merge import certain page of pdf or indesign document, this would be great addition for indesign

  • I am working on big project and in accidentally flatten the file and i saved it as PSD in then I exited Photoshop. the next time when i open the file it is merged on one page. please help!

    I am working on big project and in accidentally flatten the file and i saved it as PSD in then I exited Photoshop. the next time when i open the file it is merged on one page. please help!

    Flattening and merging are very similar. The main difference is merging keeps the transparent areas, whereas flattening removes all transparent areas by giving it a white background. A good example of flattening is a jpg image.
    Since you have closed the file by closing photoshop, that means that the history is now gone, no way of undoing.
    So that leaves you with two choices.
    You can either recreate the whole document.
    Or you can make selections of areas you are keeping and moving them one at a time to new layers. Keep each object on a separate layer. Then redo the area behind those objects.

  • Multiple data merge results on one page

    Good morning everyone,
    I am trying to set-up the menus for my upcoming wedding, where everyone has already chosen what they are having.  I have created a .csv file with four columns - Name, Starter, Main, Dessert.
    As I am printing these off at home, I want them to be half A4 size (105mm x 297mm), with two menus per page.
    However, by doing the normal Data Merge, I end up with having the same menu twice on each page.  So both menus on the page are for the same person.
    How do I set it up so that I can have two different menus, the next entries in the .csv file, on the same page?
    Thanks in advance.
    Simon

    Sounds like you tried to put two menus onthe page and run a multi-record merge.
    To merge multiple records you use only one set of placeholders on your page. Put it in the upper left position. ID will duplicate it as many timeas as will fit using the spacing parameters you specify. It's often helpful to use an empty frame with no stroke to define the area to make setting the sapcing easier. Group it with your text frame(s).

  • Data Merge specific cells, multiple (unlimited) entries on one page

    HELP!
    I've used the mail merge in the past with publisher to create labels and the like....in it on a single page I would code
    <<address>> and in another part of the page <<next entry, address>> <<next entry, address>>
    and so on and it would fill every area with the next entry in the excel file ad nauseum till complete. It was a simple way to extract specific continuous bits of information and apply it to a document on a single page.
    I haven't been able to find anything similiar with Data Merge but there must be a way since InDesign has been more powerful than publisher in every way so far. Here is a sample of what I am creating
    https://www.dropbox.com/s/7ewkwgmerz89ggf/Sample.pdf
    Basically I have a book where every year my boss has been hand retyping the ENTIRE calendar not just into what you see in the sample above but through out an entire day planner also. I'd like to streamline the process but everytime I try and place a data point it says (for example) <<Day of Month>> and page 1 will ONLY take data point 1. I'm aware of the multiple selections per page function but it wants to lay it out in a grid that doesn't match my document and I have 365 data points to plug in to 2014 and another 365 for page 2 (2015)
    Is there anyway to tell indesign I want <<Day of month, row 2, column 2>> in one box and <<Day of Month, row 3, column 2>> ....<<Day of Month, row 366, column 2>> All on one page so that I can place them precisely through out the document? This would allow me to make a simple adjustment to the CSV each year and then fill in the remainder with nothing more than a click.
    Any help would be appreciated because I'd LOVE to save 20 hours of work every year and huge numbers of mistakes. This has to be something SUPER simple but no tutorial I've found covers it, they all mention the multiple entries per sheet option and that does NOTHING like what I want. I'd have to create 12 documents, data merge them, and then place them into the primary document and that is terrible workflow.  Through out the final document not everything is in a comfortable grid like this so it would be even less useful.
    We use CS3 in case that is relevant for the topic.
    Thanks,
    Tinker

    I'm looking now but not finding anything promising. The calendar scripts all were for formatting very specific calander shapes and I need to be able (on one page) to have 7 entries in a non symmetrical layout (5 works days, then the weekends one over the other). Do you have any recommendations for scripts you like?
    Maybe I'll create a document the holds the information a few date entires per page then place that into the master cropped and moved around as needed. I'm still looking through the exchange for something that makes the tool a little more powerful for me. I'll post it here if I find something that does what I need as that doesn't sound like a very efficient workflow.

  • Can I merge from Numbers, multiple small cards on one page?

    I am trying to set up a page that has business card size text fields, about 8 on a page. I would like to merge from Numbers into these cards but when I do the merge, the first page is all the same card content, then the next page is duplicates of all the next record info. Is it not possible for each "card" I am making to merge different information on one page? Maybe I am trying to do the impossible.

    Richard,
    Yvan's script as well as the other Tips may give you sufficient options. However, since you were a bit vague about the content, but gave the impression that it is not standard business card content, you may be be interested in a specific option that I favor. I use a transfer table that arranges the Numbers content by card position before you merge. I'll give you a simple example that you can alter to fit your circumstance.
    Let's say we have a single column, Column A, of data in Table 1 that we want to merge 8 cards to the page in a Pages document. We'll assume that you have a Header Row and that the data begins in Row 2.
    Your Transfer Table will need eight columns (A through H), one for each card position, and a Header Row. The Transfer Table will have titles in the Header Row cells of Card1 through Card8. These titles are the ones you will use when you set up the merge in Pages.
    You will Fill the body cells of the Transfer Table with the formula:
    =IFERROR(INDIRECT(ADDRESS((ROW()-2)*8COLUMN()1, 1, , , "Table 1")), "")
    In the Sheets Pane, drag the Transfer Table to the top of the list. You can't merge from a table unless it is first on the list for the sheet. Here's a graphic...
    Save the document and you're ready to merge from it. In your Pages document, you will call for the appropriate column title in the Transfer Table in each of your eight card positions.
    Jerry
    Message was edited by: Jerrold Green1

  • Merge print multiple image files on one page

    Hello,
       A Windows 7 end user seeks for a technical support from me. She tries to merge print multiple image files (JPEG) by using the following steps :-
    1) highlight more than 1 files
    2) [Right-click] then Choose [Print]
    3) she could print the multiple images on ONE page successfully when she initially bought/used this Win7 computer , but recently (these 2 months) she got the error : pop up a few dialogue windows saying "Insufficient memory"
    4) I helped her to close all other applications software and found no high CPU/memory processes and also asked for help from hardware manufacturer and got NO virtual memory and physical memory full error by running a utility tool provided.
    The hardware config :-
    - Windows 7 Prof Service Pack 1 64 bit
    - 4GB memory
    - i5 Intel CPU
    Anyone can help me to fix the issues for my end user ?
    Thanks in advance
    Regards,
    Bruce

    Hi Bruce,
    In addition to above suggestions, this issue can also be caused by corrupted user registry key.
    Please test the issue in new user accout.
    If the issue doesn't happen under new user profile, I suggest you repair corrupted user profile:
    Fix corrupted user profile
    http://windows.microsoft.com/en-us/windows/fix-corrupted-user-profile
    Kate Li
    TechNet Community Support

  • Multiple Data Merge - Problem Resolve... Sort Of

    I've researched this issue all morning and found issues dating back to 2012 regarding the problems with Indesign's Multiple Record Data Merge. Many of the issues are answered with the basic set up. Create a new page as a single page and non facing page document. It appears that an earlier bug was resolved that caused data merge documents to be placed off center when produced. The issue that I was experiencing was similar to what I had seen but not covered or not answered when it appeared someone was posting a question about it.
    I started with a single page document, non-facing page, no initial text box, and sized to 8.5'' x 11''. I'm layout out name badges 10-up on a page. I had a previous template that had some graphics in the background for alignment purposes. I created a blank master page and a record holder for the name badge then loaded my data source, placed my data entries, and styled accordingly. Upon creating a data merge I selected Multiple Record and then previewed the data merge and positioned the elements on the page using the data merge controls top, left and column placement commands.
    The preview looked perfect. The problem came when I finished the final data merge. The resulting page was not correct and looked nothing like the preview. Records were strewn about the page and excessive amounts of pages were created. I spent 4 hours trouble shooting this, far more than this project was billed. At this point it was a mission. In a reply dated back around 2013 I found that someone had removed a layer from their document. I had no layers. The only thing that was not a part of the actual data merge was the graphics that I had on the page for positioning that were not tied to the data merge at all.
    I decided to delete these graphics and try to apply the data merge again. The results were perfect. I'm deducing from this experiment that the data merge needs to be done on a blank page. Which is counter productive to the Indesign mater page template. Any elements on the page need to exist as a a part of your data entry group and no other elements on the page. You only create one data entry group in the top corner of the page then use the data merge panel to position and duplicate. Otherwise, you will get a single page for each record you have with each record set 10-up in my case.
    Recap:
    Create a single non-facing page document with no intial text box. (if you have more than one page the Multiple Records option will be grayed out)
    Only have 1 layer in this document
    Set a single data entry set/group on the master page.
    Do not include any other graphics. Put them in after the data merge.
    Click the Create Merged Document button in the data merge panel
    Select "Multiple Records" from the drop down list
    Click the Multiple Record Layout tab at the top of the Data Merge panel
    Click "Preview Multiple Record Layout" at the bottom of the Data Merge panel so you can see the Entry Sets with the data in place
    Use the Margins and Layout or Records inputs to position the elements on the document (see note below)
    Click OK when everything is in place the way you like it.
    After the data merge is complete you will have a new document that should look like you want it to. Now you can go into this document and start adding your design elements.
    NOTE: Positioning the content without the base graphics can be tough if not impossible. What I did in this situation is placed my positioning guides on the page then went through Steps 1-9 to set up the document for merge. Once my settings were set I then clicked "Cancel" and deleted my positioning guides and graphics. The problem I was having was due to these elements being on the page. Once I created the document I then pasted my template guides back into the final data merged master page for production.
    Request to ADOBE: Fix this issue so we can design our layouts and position our data merge elements without having to backtrack.

    If you insist in multi-record data merge, you can have static/variable graphic and text components work. But, create a 3.5 x 2 frame (3.75 x 2.25 card w/bleed) around all of these components, and make sure nothing extends beyond this bounding frame. If the composition prevents you from enclosing all components, then make a PDF of content that is imported in as one graphic.
    Another suggestion: don't combine the functions of variable data merge with imposition.
    Create a 1up layout of business card to data merge the variable info.
    From this file, export to PDF.
    Then impose the individual cards with: an imposition app, PDF plug-in, Indesign script, or even manual placement into another document.

  • Multiple Data Columns in one report column

    How do I list multiple columns returned from a select vertically within one report column. For instance, I have three statuses for a project that I want to list, I'd like to list the three statuses within one status column. I remember seeing this somewhere but cannot find it now. Example:
    Status Column
    Budget: Green
    Schedule: Red
    Issues: Yellow

    additionally you could use HTML expressions. When editing your report, click on the column you want to use for displaying multiple data columns. This will take you to the report columns attributes page, there you can type in something like the following into the HTML expression field, referencing other report columns using #COLUMN_NAME# substitutions:
    #BUDGET#
    #SCHEDULE#
    #ISSUES#
    this is assuming your column aliases are named BUDGET, SCHEDULE and ISSUES. You can then just hide the columns that you don't want to see because the data is already shown using the HTML expression.
    Regards,
    Marc

  • How do you data merge a specified page from an .indd file

    Hi,
    I'm using ID CS6  creating a number of documents that will include various pages from other .indd documents; i see the best way for me to do this as a data merge.
    I can get the data merge to work absolutely fine, pulling in relevant images and text etc, and also pulling in the relelvant .indd documents; what i can't do is specify which page of the .indd file i want to show, so i'm always getting the first page. Is there a way to specify a page to merge, as opposed to only the first one?
    Thanks in advance...
    P.S. I'm right in thinking you can't merge snippet files aren't I...as i can't get that to work...

    I don't know of a way to specify a page of an ID document during a data merge. But interesting note: during my experimentation, the second page of the ID doc was being used in the data merge. Then after changing other variables in data merge workflow, the first page of document was used. I don't know what triggered the page change, and unfortunately can not repeat.

Maybe you are looking for

  • "Unable to log in to the user account . . . "  Any suggestions?

    Hi, I have a 500 mhz PowerBook G4 that I've been using as a secondary computer since I got my MacBook Pro a few months ago. The PB has a 100gig drive with two partitions. There are 10.4.11 systems on both drives. This morning I renamed both drives in

  • How can I get some help with Verizon's customer service?

    I want to preface this by stating that this is the first time in the 10 years in which I've been a Verizon wireless customer, that I've had a problem that cannot be resolved to my satisfaction.  My issue started with a Verizon Wireless Stores in Beth

  • PSC 2355 all in one stopped printing after windows 8.1 upgrade scan is OK.

    I have a HP psc2355 printer which was working happliy in Window 8. I downloaded and installed 8.1 from windows store and the printer no longer works! With  the printer status window open (via the windows control panel) the document detail appear brie

  • ANYONE HELP?????? Cover Flow not showing my artwork

    I have the following problem but only with certain artwork, not all, I added images to all my files before and hardly ever did I get this problem(Cover Flow not showing my artwork), I usually added the same image or another image to make the cover fl

  • ASA to ACS Radius - restrict by group

    Hi Everyone, this may not be the correct forum for this, but since it relates to the ASA... So we currently use RADIUS to authenticate users accessing our AnyConnect access... the thing is, with everything working, we want to restrict the access to o