Would appreciate the proper syntax for the following "If Statement":
If (HOUSE = BLUE or GREEN) and (STREET = COLOR) say "BLUE or GREEN"
otherwise say "NOT A MATCH".
This is how far I've gotten,
{IF {= OR ({COMPARE {MERGEFIELD HOUSE} = “BLUE”},{COMPARE {MERGEFIELD HOUSE}
= “GREEN”}, {COMPARE {MERGEFIELD STREET} = “COLOR”})} >1 “BLUE OR GREEN
COLOR” “NOT A MATCH”}
Thanks in advance

Signature
Susan
Graham Mayor - 14 Feb 2006 07:08 GMT
The following should work
{ IF{ =({ IF{ Mergefield House } = "BLUE" 1 0 } + { IF { Mergefield House }
= "GREEN" 1 0 } + { IF { Mergefield Street } = "COLOR" 1 0}) } = 2 "BLUE
OR GREEN" "NOT A MATCH" }
See http://www.gmayor.com/formatting_word_fields.htm

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Would appreciate the proper syntax for the following "If Statement":
> If (HOUSE = BLUE or GREEN) and (STREET = COLOR) say "BLUE or GREEN"
[quoted text clipped - 6 lines]
>
> Thanks in advance
macropod - 14 Feb 2006 07:26 GMT
Hi Susan,
There are numerous ways of doing this. One way is:
{IF{=({IF{MERGEFIELD House}= Blue 1 0}+{IF{MERGEFIELD House}= Green 1
0})*{IF{MERGEFIELD Street}= Color 1 0}}= 1 "BLUE or GREEN" "NOT A MATCH"}
Cheers
> Would appreciate the proper syntax for the following "If Statement":
> If (HOUSE = BLUE or GREEN) and (STREET = COLOR) say "BLUE or GREEN"
> otherwise say "NOT A MATCH".
>
> This is how far I've gotten,
> {IF {= OR ({COMPARE {MERGEFIELD HOUSE} = "BLUE"},{COMPARE {MERGEFIELD
HOUSE}
> = "GREEN"}, {COMPARE {MERGEFIELD STREET} = "COLOR"})} >1 "BLUE OR GREEN
> COLOR" "NOT A MATCH"}
>
> Thanks in advance