> I have a word merge, trying to merge from my field 'GENDER' which
> holds the either Male or Female. In the word document, I have to ask
[quoted text clipped - 13 lines]
>
> What am I doing wrong and how can I fix it to ask the question twice?
sorry, i typed wrong, it says:
FEMALE: IIf([Gender]=[FEMALE],"X",""), which I was going to use for
the questions next to the F
MALE: IIf([Gender]=[MALE],"X",""), which I was going to use for the
questions next to the M
Debbie - 20 Apr 2008 03:36 GMT
> > I have a word merge, trying to merge from my field 'GENDER' which
> > holds the either Male or Female. In the word document, I have to ask
[quoted text clipped - 21 lines]
>
> - Show quoted text -
Nevermind, thanks anyway. I figured it out.
FEMALE: IIf([Gender]="Female","X","")
MALE: IIf([Gender]="Male","X","")
I needed quotes around Female and Male.