Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.newusers
Ed Sowell Ed Sowell is offline
external usenet poster
 
Posts: 11
Default Conditionals in Mail Merge label layout

I'd like to skip the Country entierly if the data is blank or USA. How is
this done?

TIA

Ed

  #2   Report Post  
Posted to microsoft.public.word.newusers
Doug Robbins - Word MVP on news.microsoft.com Doug Robbins - Word MVP on news.microsoft.com is offline
external usenet poster
 
Posts: 407
Default Conditionals in Mail Merge label layout

Use the following field construction:

{ IF { MERGEFIELD Country } "USA" { IF { MERGEFIELD Country } "" {
MERGEFIELD Country } "" } "" }

You must use Ctrl+F9 to insert each pair of field delimiters and you use
Alt+F9 to toggle off their display.

--
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, originally posted via msnews.microsoft.com

"Ed Sowell" wrote in message
...
I'd like to skip the Country entierly if the data is blank or USA. How is
this done?

TIA

Ed



  #3   Report Post  
Posted to microsoft.public.word.newusers
Ed Sowell Ed Sowell is offline
external usenet poster
 
Posts: 11
Default Conditionals in Mail Merge label layout

Thanks, Doug. Wierd! It would be clearer is there were explicit THEN and
ELSE.

I have a couple other questions, if you don't mind. When the Country field
is USA or empty I'd like to not have the extra empty line at the end. Is
there a way I can put a newline character in front of the Country merge
field so it is conditional?

Also, how can I specify a vertical centering within the label?

Thangs again.

Ed

"Doug Robbins - Word MVP on news.microsoft.com"
wrote in message ...
Use the following field construction:

{ IF { MERGEFIELD Country } "USA" { IF { MERGEFIELD Country } "" {
MERGEFIELD Country } "" } "" }

You must use Ctrl+F9 to insert each pair of field delimiters and you use
Alt+F9 to toggle off their display.

--
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, originally posted via msnews.microsoft.com

"Ed Sowell" wrote in message
...
I'd like to skip the Country entierly if the data is blank or USA. How is
this done?

TIA

Ed




  #4   Report Post  
Posted to microsoft.public.word.newusers
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Conditionals in Mail Merge label layout

If you understand the syntax it is clearer

{IF condition "do this" "else do this"}

To remove the blank line put the field on the previous line and add in the
paragraph break eg

{Mergefield City}{ IF { MERGEFIELD Country } "USA" { IF { MERGEFIELD
Country } "" "¶
{MERGEFIELD Country }" "" } "" }
With a paragraph break (press enter) where you see ¶

For the vertical centering. select the table and format table cell
alignment.
--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org





Ed Sowell wrote:
Thanks, Doug. Wierd! It would be clearer is there were explicit THEN
and ELSE.

I have a couple other questions, if you don't mind. When the Country
field is USA or empty I'd like to not have the extra empty line at
the end. Is there a way I can put a newline character in front of the
Country merge field so it is conditional?

Also, how can I specify a vertical centering within the label?

Thangs again.

Ed

"Doug Robbins - Word MVP on news.microsoft.com"
wrote in message
...
Use the following field construction:

{ IF { MERGEFIELD Country } "USA" { IF { MERGEFIELD Country }
"" { MERGEFIELD Country } "" } "" }

You must use Ctrl+F9 to insert each pair of field delimiters and you
use Alt+F9 to toggle off their display.

--
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, originally posted via msnews.microsoft.com

"Ed Sowell" wrote in message
...
I'd like to skip the Country entierly if the data is blank or USA.
How is this done?

TIA

Ed



  #5   Report Post  
Posted to microsoft.public.word.newusers
Ed Sowell Ed Sowell is offline
external usenet poster
 
Posts: 11
Default Conditionals in Mail Merge label layout

Thanks, Graham. That did it. I tried something like that, but omitted the
unmatched double quote in front of the paragraph marker. Is that the escape
sequence for embedding literals in Mail Merge? Where are all these rules
written?

Ed

"Graham Mayor" wrote in message
...
If you understand the syntax it is clearer

{IF condition "do this" "else do this"}

To remove the blank line put the field on the previous line and add in the
paragraph break eg

{Mergefield City}{ IF { MERGEFIELD Country } "USA" { IF { MERGEFIELD
Country } "" "¶
{MERGEFIELD Country }" "" } "" }
With a paragraph break (press enter) where you see ¶

For the vertical centering. select the table and format table cell
alignment.
--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org





Ed Sowell wrote:
Thanks, Doug. Wierd! It would be clearer is there were explicit THEN
and ELSE.

I have a couple other questions, if you don't mind. When the Country
field is USA or empty I'd like to not have the extra empty line at
the end. Is there a way I can put a newline character in front of the
Country merge field so it is conditional?

Also, how can I specify a vertical centering within the label?

Thangs again.

Ed

"Doug Robbins - Word MVP on news.microsoft.com"
wrote in message
...
Use the following field construction:

{ IF { MERGEFIELD Country } "USA" { IF { MERGEFIELD Country }
"" { MERGEFIELD Country } "" } "" }

You must use Ctrl+F9 to insert each pair of field delimiters and you
use Alt+F9 to toggle off their display.

--
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, originally posted via msnews.microsoft.com

"Ed Sowell" wrote in message
...
I'd like to skip the Country entierly if the data is blank or USA.
How is this done?

TIA

Ed






  #6   Report Post  
Posted to microsoft.public.word.newusers
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Conditionals in Mail Merge label layout

The quote is not unmatched? It is paired with the quote after {MERGEFIELD
Country }"
You will find quite a bit (but not everything) about fields on my web site
at http://www.gmayor.com/formatting_word_fields.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



Ed Sowell wrote:
Thanks, Graham. That did it. I tried something like that, but omitted
the unmatched double quote in front of the paragraph marker. Is that
the escape sequence for embedding literals in Mail Merge? Where are
all these rules written?

Ed

"Graham Mayor" wrote in message
...
If you understand the syntax it is clearer

{IF condition "do this" "else do this"}

To remove the blank line put the field on the previous line and add
in the paragraph break eg

{Mergefield City}{ IF { MERGEFIELD Country } "USA" { IF {
MERGEFIELD Country } "" "¶
{MERGEFIELD Country }" "" } "" }
With a paragraph break (press enter) where you see ¶

For the vertical centering. select the table and format table
cell alignment.
--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org





Ed Sowell wrote:
Thanks, Doug. Wierd! It would be clearer is there were explicit THEN
and ELSE.

I have a couple other questions, if you don't mind. When the Country
field is USA or empty I'd like to not have the extra empty line at
the end. Is there a way I can put a newline character in front of
the Country merge field so it is conditional?

Also, how can I specify a vertical centering within the label?

Thangs again.

Ed

"Doug Robbins - Word MVP on news.microsoft.com"
wrote in message
...
Use the following field construction:

{ IF { MERGEFIELD Country } "USA" { IF { MERGEFIELD Country }
"" { MERGEFIELD Country } "" } "" }

You must use Ctrl+F9 to insert each pair of field delimiters and
you use Alt+F9 to toggle off their display.

--
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, originally posted via msnews.microsoft.com

"Ed Sowell" wrote in message
...
I'd like to skip the Country entierly if the data is blank or USA.
How is this done?

TIA

Ed



  #7   Report Post  
Posted to microsoft.public.word.newusers
Ed Sowell Ed Sowell is offline
external usenet poster
 
Posts: 11
Default Conditionals in Mail Merge label layout

That's interesting. I didn't match it and it worked. I then put in the
matching one per your advice and it works too!

Ed


"Graham Mayor" wrote in message
...
The quote is not unmatched? It is paired with the quote after {MERGEFIELD
Country }"
You will find quite a bit (but not everything) about fields on my web site
at http://www.gmayor.com/formatting_word_fields.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



Ed Sowell wrote:
Thanks, Graham. That did it. I tried something like that, but omitted
the unmatched double quote in front of the paragraph marker. Is that
the escape sequence for embedding literals in Mail Merge? Where are
all these rules written?

Ed

"Graham Mayor" wrote in message
...
If you understand the syntax it is clearer

{IF condition "do this" "else do this"}

To remove the blank line put the field on the previous line and add
in the paragraph break eg

{Mergefield City}{ IF { MERGEFIELD Country } "USA" { IF {
MERGEFIELD Country } "" "¶
{MERGEFIELD Country }" "" } "" }
With a paragraph break (press enter) where you see ¶

For the vertical centering. select the table and format table
cell alignment.
--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org





Ed Sowell wrote:
Thanks, Doug. Wierd! It would be clearer is there were explicit THEN
and ELSE.

I have a couple other questions, if you don't mind. When the Country
field is USA or empty I'd like to not have the extra empty line at
the end. Is there a way I can put a newline character in front of
the Country merge field so it is conditional?

Also, how can I specify a vertical centering within the label?

Thangs again.

Ed

"Doug Robbins - Word MVP on news.microsoft.com"
wrote in message
...
Use the following field construction:

{ IF { MERGEFIELD Country } "USA" { IF { MERGEFIELD Country }
"" { MERGEFIELD Country } "" } "" }

You must use Ctrl+F9 to insert each pair of field delimiters and
you use Alt+F9 to toggle off their display.

--
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, originally posted via msnews.microsoft.com

"Ed Sowell" wrote in message
...
I'd like to skip the Country entierly if the data is blank or USA.
How is this done?

TIA

Ed




Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Mail merge label only puts one label per page? Ebb Berry Mailmerge 4 April 21st 23 12:06 PM
Label Mail Merge Celestine Mailmerge 3 April 10th 08 05:19 AM
How do you save a mail merge label document as JUST a label doc? GailD Mailmerge 3 March 29th 06 06:52 PM
Mail Merge automatically resetting my mail label option selection Tony Mailmerge 2 January 1st 06 11:12 PM
Mail Merge Label layout. Brian Ellis Mailmerge 3 December 9th 04 05:32 PM


All times are GMT +1. The time now is 10:06 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"