MichaelF81
Programmer
Ok, I have a report in Access. When it runs, I want some actions to take place.
Essentially, on the report the 2 labels are text71 and text 72.
Since Text71 can be null, it errors out. I am having issues with the IsNull command. Any ideas?
"Adults are just obsolete children and the hell with them." - Dr. Seuss
Essentially, on the report the 2 labels are text71 and text 72.
Code:
Dim strValue1
Dim strValue2
strValue1 = Me.Text71
strValue2 = Me.Text71a
If strValue1 < strValue2
Me.Text71 = strValue2
Else
Me.Text71 = strValue1
End If
Since Text71 can be null, it errors out. I am having issues with the IsNull command. Any ideas?
"Adults are just obsolete children and the hell with them." - Dr. Seuss