I've got a recordsource that feeds the value of the control AddDate in a report.
The recordsource is blank/empty/uninitialized/NULL.
I want the result of the code below to spit out a pop-up message box that says EMPTY! but it doesn't work.
The code is in the Detail_Format section of the report.
Any ideas?
If IsEmpty(Me.AddDate) Then
MsgBox "EMPTY!"
End If
The recordsource is blank/empty/uninitialized/NULL.
I want the result of the code below to spit out a pop-up message box that says EMPTY! but it doesn't work.
The code is in the Detail_Format section of the report.
Any ideas?
If IsEmpty(Me.AddDate) Then
MsgBox "EMPTY!"
End If