View Single Post
  #2   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default Mergefield - carriage return

{ IF{ MERGEFIELD "Field1" } = "" Enter
"" { MERGEFIELD "Field2" }}

will always give you a blank line

Perhaps you really want

{ IF{ MERGEFIELD "Field1" } = "" "{ MERGEFIELD "Field2" }" "{ MERGEFIELD
"Field1" }Enter
{ MERGEFIELD "Field2" }" }

You must use Ctrl+F9 for each pair of field delimiters {}
--
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

"Eric" wrote in message
...
Hello,

I am trying to go to the next line based on a contidion on a mergefield.
I am assuming that it would look like { IF{ MERGEFIELD "Country" } = "" ""
CHR(13)}

Also how to you insert a mergefield based on a condition on another
mergefield?
again I am assuming that it would look like { IF{ MERGEFIELD "Field1" } =
"" "" { MERGEFIELD "Field2" }}


Thank you.

Eric