I have a field called AppointmentTime. The drop down field has several options: N/A, 07:00 am, 07:15 am, etc. The field defaults to "N/A" since most customers don't have an appointment.
I don't want the field blank (null). I'm trying to write VBA to execute After Update in the field. If the person selects a time, then no action. If the person deletes the "N/A" then I want the "N/A" to reappear.
I tried ... If IsNull([AppointmentTime]) Then Me.AppointmentTime = "N/A"
No luck
I don't want the field blank (null). I'm trying to write VBA to execute After Update in the field. If the person selects a time, then no action. If the person deletes the "N/A" then I want the "N/A" to reappear.
I tried ... If IsNull([AppointmentTime]) Then Me.AppointmentTime = "N/A"
No luck