Text Box to Enter Date

B

Bob

IF Text Box [tbA] is to have today's date entered into it , if Text Box
[tbB] has any text entered into it......What code do I need for [tbA] in
after update.......Thanks for any help,................Bob
 
B

Bob

Oops figured it out sorry,
If tbA.value = "" Or IsNull(tbA.value) Then
tbA.value = Format(Now, "dd-mmm-yy")
 
Top