
Signature
macropod
[MVP - Microsoft Word]
-------------------------
I need to put the last Mergefield in because my data could contain things
other than 1,2,3. Do you have any idea how to get Word to save the
mergefields intact so that I can edit them without rewriting them? As I have
it now Word (2003) automatically inserts the value in the first record into
the merge field, the merge works fine but I can't go back and edit the
mergefield without retyping it.
> Hi jenkusi,
>
[quoted text clipped - 19 lines]
> > "Demonstrates"}="2" "Meeting Expectations" {IF {MERGEFIELD
> > "Demonstrates"}="1" "Not Meeting Expectations" {MERGEFIELD "Demonstrates"}}}}
macropod - 12 Mar 2007 21:31 GMT
Hi jenkusi,
In that case, you'll do bets with a set of IF fields. Try:
{IF{MERGEFIELD Demonstrates}= 3 "Exceeding Expectations" {IF{MERGEFIELD Demonstrates}= 2 "Meeting Expectations" {IF{MERGEFIELD
Demonstrates}= 1 "Not Meeting Expectations" {MERGEFIELD Demonstrates}}}}
Perhaps the easiest way to create the set is to:
. insert your 'Demonstrates' mergefield four times, as in «Demonstrates» «Demonstrates» «Demonstrates» «Demonstrates»
. select the last two of these and press Ctrl-F9 to embed them in a formula field, then repeat this with the last 3, then all four,
so that you end up with:
{«Demonstrates» {«Demonstrates» {«Demonstrates» «Demonstrates»}}}
. type the formulae and required results between the field braces and chevrons, so that you end up with
{IF«Demonstrates»= 3 "Exceeding Expectations" {IF«Demonstrates»= 2 "Meeting Expectations" {IF«Demonstrates»= 1 "Not Meeting
Expectations" «Demonstrates»}}}
Be careful to insert all of the spaces and double quotes shown, otherwise the fields won't work correctly.
Cheers

Signature
macropod
[MVP - Microsoft Word]
-------------------------
>I need to put the last Mergefield in because my data could contain things
> other than 1,2,3. Do you have any idea how to get Word to save the
[quoted text clipped - 26 lines]
>> > "Demonstrates"}="2" "Meeting Expectations" {IF {MERGEFIELD
>> > "Demonstrates"}="1" "Not Meeting Expectations" {MERGEFIELD "Demonstrates"}}}}