Have you defined some function named "IsNotNull"? There's no built-in
function of that name, nor any real reason to create one. I would use
"Not IsNull()" instead. For example,
If IsNull(Me.TxtDateStart) And Not IsNull(Me.TxtDateEnd) Then
MsgBox "Date Start Empty"
Have you defined some function named "IsNotNull"? There's no built-in
function of that name, nor any real reason to create one. I would use
"Not IsNull()" instead. For example,
If IsNull(Me.TxtDateStart) And Not IsNull(Me.TxtDateEnd) Then
MsgBox "Date Start Empty"
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.