Multiple up merge

S

Steve S.

I'm trying to merge postcards that are printing 2-sided, 2-
up on an 8.5x11 sheet. The result I want is as follows:
(#=record, A/B= front/back)

1A
2A
(flip to back)
1B
2B
(new sheet)

When I setup with a <new record> field code, it
switches. . . but it returns back to the previous record
on the next sheet. (eg. the record order goes
1,2,2,3,3,4,4,5...)

Any ideas on how to correct this? I'm sure there's got to
be something I'm missing here. TIA
 
D

Doug Robbins

I think that the only way to do this would be to merge to the first side,
reverse the order of the data set (or of the cards, then turn them over and
run the merge again so that it prints on the other side

--
Please respond to the Newsgroup for the benefit of others who may be
interested. Questions sent directly to me will only be answered on a paid
consulting basis.

Hope this helps,
Doug Robbins - Word MVP
 
P

Peter Jamieson

You have to save the values using SET fields and use REF fields to print the
saved values, e.g. suppose you have two fields F1 and F2 to print on the
front and two, B1 and B2 for the back, then you need e.g.

(front)
{ MERGEFIELD F1 }
{ MERGEFIELD F2 }
{ SET R1B1 { MERGEFIELD B1 } }
{ SET R1B2 { MERGEFIELD B2 } }

{ NEXT }
{ MERGEFIELD F1 }
{ MERGEFIELD F2 }
{ SET R2B1 { MERGEFIELD B1 } }
{ SET R2B2 { MERGEFIELD B2 } }
{back)
{ REF R1B1 }
{ REF R1B2 }

{ REF R2B1 }
{ REF R2B2 }

This should work for individual fields. You may have difficulty using this
technique if you are using ADDRESSBLOCK. All the {} are the special field
braces you can insert using ctrl-F9.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top