shabbaranks
Registered User.
- Local time
- Today, 15:52
- Joined
- Oct 17, 2011
- Messages
- 300
Hi guys,
Ive got monday mind block (if there is such a thing)?? Trying to deal with if then else statements. Whats the best way of going about working with if a field is blank then, within a VBA statement. Ive written the obvious
But obviously this isnt any good if there is a record in the form field.
Help is "as always" appreciated
Ive got monday mind block (if there is such a thing)?? Trying to deal with if then else statements. Whats the best way of going about working with if a field is blank then, within a VBA statement. Ive written the obvious
Code:
If Me.telnumb_txtbx = "" Or IsNull(Forms![NewContact_Frm]![telnumb_txtbx]) Then
Dbtelnum = "0"
End If
But obviously this isnt any good if there is a record in the form field.
Help is "as always" appreciated