DanG
Registered User.
- Local time
- Today, 08:32
- Joined
- Nov 4, 2004
- Messages
- 477
I suck at VBA, but I'm still trying to work my way through it.
I can not get this code to work...
If "OBusDMAprVlDate" has a date in it I want to make "OBusHOName" to be required, otherwise no entry required for either field.
I have tried several combinations and no luck.
Thank you
I can not get this code to work...
Code:
If IsNull(Me.OBusDMAprvlDate) = False And IsNull(Me.OBusHOName) = True Then
MsgBox ("Fill in your name dummy")
Else
MsgBox ("Hello")
End If
If "OBusDMAprVlDate" has a date in it I want to make "OBusHOName" to be required, otherwise no entry required for either field.
I have tried several combinations and no luck.
Thank you