How do I bottom justify in address mail merging?

A

Alex at Keary

In the text box, I would like the city, state zip line close to the Dear line:
name
company
addr1
addr2
city, state zip

Not all records will have two line addresses thus shifting up. How do I
shift them down?
 
P

Peter Jamieson

You could do the following:

{ IF "{ MERGEFIELD addr2 }" = "" "
" "" }{ MERGEFIELD name }
etc.

If more than one line can be blank, do more, e.g.

{ IF "{ MERGEFIELD addr1 }" = "" "
" "" }{ IF "{ MERGEFIELD addr2 }" = "" "
" "" }{ MERGEFIELD name }
 

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