H
Hank in KC
I have a memo field [Notes] that may or may not contain data. I would like
to print any data in the field with a report, and have a text box containing
=IIf(IsNull([Notes]), "", [Notes]) I have also tried
IIf(IsNull([Notes]), , [Notes])
Both expressions result in error messages. I'm wondering if Null is the
correct way to test for an empty memo entry.
If there is info in the field I would like to print out something to the
effect
"Notes: This account .... blah, blah................
and think possibly something like IIf(IsNull([Notes]), , "Notes: " &
[Notes]) could work.
TIA
to print any data in the field with a report, and have a text box containing
=IIf(IsNull([Notes]), "", [Notes]) I have also tried
IIf(IsNull([Notes]), , [Notes])
Both expressions result in error messages. I'm wondering if Null is the
correct way to test for an empty memo entry.
If there is info in the field I would like to print out something to the
effect
"Notes: This account .... blah, blah................
and think possibly something like IIf(IsNull([Notes]), , "Notes: " &
[Notes]) could work.
TIA