Hi everyone,
I want to measure how long it takes to enter data into my forms.
At the beginning, i have
Forms![Introduction]![STTIME] = Now
and at the end i have
Forms![Introduction]![ENDTIME] = Now
Fomrs![Introduction]![INTTIME] = DateDiff ("n", Forms![Introduction]![ENDTIME], Forms![Introduction]![STTIME])
the STTIME (start time) variable has the correct start time, and the ENDTIME (end time) variable has the correct ending time. However, the value of INTTIME (interview time or elapsed time) is always 0. I don't understand why DateDiff will not calculate the elapsed time.
The three variables are all data types, set to short time format.
Does anyone know what I'm doing incorrectly?
Thank you in advance.
Dan
I want to measure how long it takes to enter data into my forms.
At the beginning, i have
Forms![Introduction]![STTIME] = Now
and at the end i have
Forms![Introduction]![ENDTIME] = Now
Fomrs![Introduction]![INTTIME] = DateDiff ("n", Forms![Introduction]![ENDTIME], Forms![Introduction]![STTIME])
the STTIME (start time) variable has the correct start time, and the ENDTIME (end time) variable has the correct ending time. However, the value of INTTIME (interview time or elapsed time) is always 0. I don't understand why DateDiff will not calculate the elapsed time.
The three variables are all data types, set to short time format.
Does anyone know what I'm doing incorrectly?
Thank you in advance.
Dan