gojets1721
Registered User.
- Local time
- Today, 10:09
- Joined
- Jun 11, 2019
- Messages
- 430
I'm trying to display a msgbox if any of 5 different values is present in a field AND if a separate field is null. Here's what I have so far but its erroring out as a data mismatch.
Any suggestions?
Any suggestions?
Code:
If "[Field1] IN ('value1','value2','value3','value4','value5')" AND IsNull(Field2) Then
MsgBox "Message for User"
End If