
April 9th, 2003, 07:45 AM
|
|
Junior Member
|
|
Join Date: Feb 2003
Location: UK
Posts: 23
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Rather than using an additional VB function, I used the IIf statement, which evaluates a condition and returns a value depending on whether the condition is true or false.
I changed the calculated fields in your query to:
FemaleX: IIf([Gender]="Female","X","")
MaleX: IIf([Gender]="Male","X","")
That did it
|