Code for “Do nothing”
Is there any VBA code for “do nothing”
As an example, there is no VBA function for Is Not Null
so to carry out an action if a field is Not null
If IsNull(Fieldname) then
‘do nothing
Else DoCmd.OpenForm “Formname”
End If
This works fine with leaving the first statements blank, but doesn’t seem right???
Any observations/suggestions would be gratefully received
Is there any VBA code for “do nothing”
As an example, there is no VBA function for Is Not Null
so to carry out an action if a field is Not null
If IsNull(Fieldname) then
‘do nothing
Else DoCmd.OpenForm “Formname”
End If
This works fine with leaving the first statements blank, but doesn’t seem right???
Any observations/suggestions would be gratefully received