I have a field that holds a value called
Me.AppointmentTime
We'll say the user chose "9:00:00 AM" as the appointment time.
I want to take the me.appointmentTime value and add 5 minutes to it and set the value of another field to that value.
Me.time1 = me.appoitnmentTime + 5 minutes
me.time1 would then equal 9:05:00 AM
How do I make this happen?