This partially helps. Here is what my merge fields look like.
«Option_A1» «Option_A2»
• «Option_B»
• «Option_C»
• «Option_D»
• «Option_E»
• «Option_F»
«Paragraph_G_or_H»
Can you be more specific. I tried it and I get a couple different results.
But not what I exactly need. If Option A1 is chosen and A2 trough F are not,
I get an extra line between the A1 paragraph and Paragraph G or H. I presume
this is happening because of the extra lines between "Options A2 and B" and
"Option F and Paragraph G or H".
Hi SassyCat,
Are you saying that, if Option_A1 has a value in it, then Options A2 through to Option F should be hidden and, conversely, Options
A2 through to Option F should all be displayed if Option_A1 is empty? If so, try coding the fields like:
{IF«Option_A1»= "" "«Option_A2»¶
¶
• «Option_B»¶
• «Option_C»¶
• «Option_D»¶
• «Option_E»¶
• «Option_F»¶
" «Option_A1»}¶
¶
«Paragraph_G_or_H»
Be careful to get the spacing and the double quotes right.
Alternatively if you need to toggle the paragraphs for options B-F, according to whether they have content, each of them should be
coded along the lines of:
{IF«Option_B»<> "" "«Option_B»¶
"}
or:
{IF«Option_B»= "" "" "«Option_B»¶
"}
Note that, if needed, you can add the same construction for options B-F to the first example, above. There will then only remain the
issue of what to do with the extra paragraph mark between «Option_A2» and «Paragraph_G_or_H» if «Option_A2» is used but all of
Options B-F are empty. If that's a possibility, you could insert a field coded as:
{IF(={IF«Option_B»= "" 0 1}+{IF«Option_C»= "" 0 1}+{IF«Option_D»= "" 0 1}+{IF«Option_E»= "" 0 1}+{IF«Option_F»= "" 0 1})> 0 "¶
"}
Thus:
{IF«Option_A1»= "" "«Option_A2»¶
{IF(={IF«Option_B»= "" 0 1}+{IF«Option_C»= "" 0 1}+{IF«Option_D»= "" 0 1}+{IF«Option_E»= "" 0 1}+{IF«Option_F»= "" 0 1})> 0 "¶
"}• «Option_B»¶
• «Option_C»¶
• «Option_D»¶
• «Option_E»¶
• «Option_F»¶
" «Option_A1»}¶
¶
«Paragraph_G_or_H»

Signature
Cheers
macropod
[MVP - Microsoft Word]
> This partially helps. Here is what my merge fields look like.
>
[quoted text clipped - 40 lines]
>> >
>> > Help please, thank you.
SassyCat - 24 Jul 2008 15:38 GMT
Thanks, this gives me enough information to set it up. I appreciate the help.
> Hi SassyCat,
>
[quoted text clipped - 82 lines]
> >> >
> >> > Help please, thank you.
SassyCat - 24 Jul 2008 15:58 GMT
I though I had enough information, but there is one more scenario that might
happen. They may choose both Option A1 and Option A2 as well as having only
some of the Options B-F chosen. I need to incorporate both options A1 and A2
as a possibility and have it not put any extra lines in if one of the options
B-F is not chosen.
More help please.
> Hi SassyCat,
>
[quoted text clipped - 82 lines]
> >> >
> >> > Help please, thank you.
macropod - 25 Jul 2008 02:32 GMT
If you need to supress all of Options B-F if A2 is empty, then:
«Option_A1» {IF«Option_A2»<> "" "«Option_A2»¶
¶
{IF«Option_B»<> "" "«Option_B»¶
"}{IF«Option_C»<> "" "«Option_C»¶
"}{IF«Option_D»<> "" "«Option_D»¶
"}{IF«Option_E»<> "" "«Option_E»¶
"}{IF«Option_F»<> "" "«Option_F»¶
"}}¶
¶
«Paragraph_G_or_H»
with the B-F option paragraphs bulleted
Otherwise, if Options B-F are allowable even if Option A2 is empty, the simplest solution is to code each of them along the lines
of:
{IF«Option_B»<> "" "«Option_B»¶
"}

Signature
Cheers
macropod
[MVP - Microsoft Word]
>I though I had enough information, but there is one more scenario that might
> happen. They may choose both Option A1 and Option A2 as well as having only
[quoted text clipped - 93 lines]
>> >> >
>> >> > Help please, thank you.