G
Guest
I have a report that prints dates (they come in from a table column which is
date/time). In certain circumstances, when the dates are blank, the user
wants me to print "TBD". I have tried various ways to achieve this to no
avail , nothing seems to work. Any help appreciated. This was my latest
attempt (which does not work):
If Nz(Me!NOPRPubTarg, 0) = 0 Then
Me.NOPRPubTarg.Format = """TBD"""
Else
Me.NOPRPubTarg.Format = "Short Date"
End If
-David
date/time). In certain circumstances, when the dates are blank, the user
wants me to print "TBD". I have tried various ways to achieve this to no
avail , nothing seems to work. Any help appreciated. This was my latest
attempt (which does not work):
If Nz(Me!NOPRPubTarg, 0) = 0 Then
Me.NOPRPubTarg.Format = """TBD"""
Else
Me.NOPRPubTarg.Format = "Short Date"
End If
-David