View Single Post
  #2   Report Post  
GTS
 
Posts: n/a
Default


"Karen C." Karen wrote in message
...
I am trying to merge a word 2002 document where I actually do want blank
lines when a merge field is empty. In older versions of word we use to

have
the option to either select or not select "Don't print blank line when

data
fields are empty". In word 2002 I can't find this option. All lines

seems
to be suppressed, especially if you have Service Pack 3 installed.

An IF statement?
{IF {MERGEFIELD WHATEVER}= "" "
" "OR {MERGEFIELD WHATEVER"}
This would produce a carraige return if the mergefield WHATEVER is blank, or
print the mergefield of it is not blank...
Graham