Eliminate Access Mailmerge empty cells in printed document

G

Guest

I am making address labels and I have an address1 line and an address2 line
in my Microsoft Access 2000 database layout. When the address2 line is empty
it leaves a blank line on my mailing label. How can I make that line
disappear, if it contains no information?
 
G

Guest

Try an IIF statement --
IIF([address2] Is Null,[address1],[address1] & Chr(13) & [address2])
 

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