IIf statement help.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

My IIf statement works fine. However, I would like to show "No Number" if
the phone field is null. --Not if the statement is false, then it should be
blank--

=IIf([txtNotify]=-1,[Phone],"")

Thank you for your help.
 
You'll need a nested IIf - one IIf inside another. The following is
untested, I *think* I managed to keep my commas, brackets and parentheses in
order, but if you encounter any errors when trying to use it, those would be
the first things to check.

=IIf(IsNull([Phone]),"No Number",IIf([txtNotify]=1,[Phone],""))

--
Brendan Reynolds (MVP)
http://brenreyn.blogspot.com

The spammers and script-kiddies have succeeded in making it impossible for
me to use a real e-mail address in public newsgroups. E-mail replies to
this post will be deleted without being read. Any e-mail claiming to be
from brenreyn at indigo dot ie that is not digitally signed by me with a
GlobalSign digital certificate is a forgery and should be deleted without
being read. Follow-up questions should in general be posted to the
newsgroup, but if you have a good reason to send me e-mail, you'll find
a useable e-mail address at the URL above.
 
Back
Top