Mail merge in Word 2002 problem

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I get rid of the "0" in a merged doc with a blank field? When I merge
my date into my letter, there is a 0 popping up where there should be a blank
space. Not all of my letters do this, just some. I have recreated the
letters in 2002 as they had been from previous versions, but it still
happens. I then have to individually edit them to remove that 0. I was told
at one point that it was an update that needed to be done, but that didn't
help. Any ideas?
 
You can either use an If...then...Else field that inserts "" if the field is
blank and inserts the field if it is not blank

{ IF { MERGEFIELD ProblemField } = "" "" { MERGEFIELD ProblemField } }

(You must use Ctrl+F9 to insert each pair of field delimiters { } and Alt+F9
to toggle of the display of field codes.)

or, see the "Suppress field display for numbers <=0" section of the article
"Formatting Word fields with switches" on fellow MVP Graham Mayor's website
at:

http://www.gmayor.com/formatting_word_fields.htm

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP
 
If the problem field produces 0 when empty then

{ IF { MERGEFIELD ProblemField } <> "0" "{ MERGEFIELD ProblemField }" }

may be required instead.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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

Back
Top