krutoigoga
Registered User.
- Local time
- Yesterday, 20:31
- Joined
- May 13, 2010
- Messages
- 34
Hello good people.
I'm working with a report that pulls data (text) from a query and it works fine.
What I would like to do is:
>>> IF a text box (text71) in the report is blank (no data found in the query) then show "No Issues"
I currently have
=[P1.DRV] & Chr(13) & Chr(10) & [P2.PASS]
in a text box (text71) and it shows what the query finds (P1 and P2 are queries)
What I have tried:
=IIf([P1.DRV] & Chr(13) & Chr(10) & [P2.PASS],Null, "No Issues")
=IIf([Text71] Is Null;"No Issues")
=IIf([Text71],Null, "No Issues")
In all cases it just comes up as blank/empty and does not show "No issues"
Please help.
I'm working with a report that pulls data (text) from a query and it works fine.
What I would like to do is:
>>> IF a text box (text71) in the report is blank (no data found in the query) then show "No Issues"
I currently have
=[P1.DRV] & Chr(13) & Chr(10) & [P2.PASS]
in a text box (text71) and it shows what the query finds (P1 and P2 are queries)
What I have tried:
=IIf([P1.DRV] & Chr(13) & Chr(10) & [P2.PASS],Null, "No Issues")
=IIf([Text71] Is Null;"No Issues")
=IIf([Text71],Null, "No Issues")
In all cases it just comes up as blank/empty and does not show "No issues"
Please help.