How do you supress lines if the are blank in Word 2003. I am mail merging from Goldmine using DDEAuto but within the address fields there are blanks, is there any easy way to blank those lines in Word
If I understand your problem correctly, you data source has empty fields in some records, and you want to suppress the blank lines that these generate in your mailmerge.
Suppose you have a MERGEFIELD that inserts the name of a company if the addressee has provided company details, but not all addressees have done this. Your MERGEFIELDs might look like:
{MERGEFIELD Name}
{MERGEFIELD Company}
{MERGEFIELD Address}
To suppress the 'Company' line when it's empty, change your MERGEFIELDS to:
{MERGEFIELD Name}
{IF{MERGEFIELD Company}= "" "" "{MERGEFIELD Company}
"}{MERGEFIELD Address}
Note the line-feed/carriage return in the '"{MERGEFIELD Company}
"}' string.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.