I have an Access report that keeps a running total (by code) of elapsed times (sngTimeElapsed).
sngTimeElapsd = sngTimeElapsd + Me.TaskTime
Then in the Report Footer, I print out the total in a text box.
Me.txtWeekTotal = sngTimeElapsd
In print preview, the total is correct. When I actually print out the report, the total is doubled.
I’ve tried both the OnPrint Event and the OnFormat Event to place this data on the report and neither works properly on actual printout.
Can you help me with this, please?