Display Status

  • Thread starter Thread starter Peter
  • Start date Start date
P

Peter

In a select query, is it possible for me to show
A - If the field is NULL
B - If the field is NOT NULL ?

Thanks
 
-----Original Message-----
In a select query, is it possible for me to show
A - If the field is NULL
B - If the field is NOT NULL ?

Thanks


.

Reply,

Try this

fff: IIf(IsNull([Field2]),"a","b")

Regards

Ian

ps: fff = name allociated to field
& Field2 is the field to be tested.
 
Back
Top