Display a customized Text based on the Value of a Field (1 Viewer)

JithuAccess

Member
Local time
Yesterday, 19:09
Joined
Mar 3, 2020
Messages
297
Hello Guys,

The Record Source of my Report is a query. There is a field "Reviewed By" in this query. I want to display the Text "No" if the Reviewed By field is Null and "Yes" if the Reviewed By Field is Not Null in my Report.

Can we do this in a Report?

Thanks
 

pbaldy

Wino Moderator
Staff member
Local time
Yesterday, 18:09
Joined
Aug 30, 2003
Messages
36,125
Try

=IIf(IsNull([Reviewed By]), "No", "Yes")
 

pbaldy

Wino Moderator
Staff member
Local time
Yesterday, 18:09
Joined
Aug 30, 2003
Messages
36,125
Happy to help!

In the long run, spaces and symbols in object names aren't worth the bother. In this case, the space required me to add brackets. I'd simple use ReviewedBy, some would use Reviewed_By (the underscore is the only symbol that won't cause issues).
 

Users who are viewing this thread

Top Bottom