View Single Post
  #2  
Old December 20th, 2006, 08:02 PM posted to microsoft.public.access.forms
David F Cox
external usenet poster
 
Posts: 493
Default IFF Statement, 3 options

at a quick glance this looks to me like it resolves to:
IIf([txt_cumulamt7] BETWEEN 1 AND 49,"Benefit Recognized,"")


"chickalina" wrote in message
...
How come this doesn't work?

=IIf(IsNull([txt_cumulamt7]),"",IIf([txt_cumulamt7]050,"","Benefit
Recognized"),IIf([txt_cumulamt7]1,"",""))

If the field is Null, then nothing appears
If the field is less than 50, but more than 0 then Benefit Recognized
If the field is 0, then nothing goes in the box
Thanks in advance!