Kind dumb question but, how do I test for empty text boxes in VBA?
I am using the following code to do this, but it does not work. Should I be testing for empty string ("") or NULL? I tried both and it doesnt work.
If Me![Phone] = Null And Me![name] = Null Then
I am using the following code to do this, but it does not work. Should I be testing for empty string ("") or NULL? I tried both and it doesnt work.
If Me![Phone] = Null And Me![name] = Null Then