Did you even TRY the Nz function like I suggested? Also, make sure your text
boxes are named differently than your field names.
--
Bob Larson
Access World Forums Super Moderator
Utter Access VIP
Tutorials at
http://www.btabdevelopment.com
If my post was helpful to you, please rate the post.
__________________________________
Ro477 said:
Just to add to the puzzle, if I put =IIF ([Name1] Is Null,1,2) I get a 2
with no #Error message. But when I check back with the Query from where the
data comes, there is definitely no data ?
Roger
KARL DEWEY said:
Use IIF statements --
IIF([Field1] Is Null, "", [Field1]) & " - " & IIF([Field2] Is Null, "",
[Field2])
--
KARL DEWEY
Build a little - Test a little
:
I have a report in which there is a text box joining two names into one
string. When the names are nothing, the text box shows #Error in the
report.
How can I suppress this so that only a space, or nothing, appears in the
report.
thanks ... Roger