ChrisCione
Board Regular
- Joined
- Aug 27, 2008
- Messages
- 92
- Office Version
- 365
- Platform
- Windows
I have the following code as an On Format event for the detail section of a report.
The report returns multiple records, making the txtReferralDueDate field NOT visible for ALL records even if only one record contains a txtReferralReturnedDate that is Null.
Obviously, I've done something wrong and appreciate any help.
Code:
If Me.txtReferralReturnedDate = Null Then
Me.txtReferralDueDate.Visible = True
Else
Me.txtReferralDueDate.Visible = False
End If
The report returns multiple records, making the txtReferralDueDate field NOT visible for ALL records even if only one record contains a txtReferralReturnedDate that is Null.
Obviously, I've done something wrong and appreciate any help.