I know how to create an automatic date:
In my form, the default date is:
=Date()
The problem is, I want to select a date in a separate field based on the choice made by another field.
When Status = Open - DateField = Blank
When Status = Resolved - DateField = Current Date
I use the following code:
Dim MyDate
MyDate = Date
DateField = MyDate
It looks for a field called Date.
If I use =Now(), It works, but I don't want the time at all.
In my form, the default date is:
=Date()
The problem is, I want to select a date in a separate field based on the choice made by another field.
When Status = Open - DateField = Blank
When Status = Resolved - DateField = Current Date
I use the following code:
Dim MyDate
MyDate = Date
DateField = MyDate
It looks for a field called Date.
If I use =Now(), It works, but I don't want the time at all.