I am currently working on creating a Clock in/out form for our work place. I have the form done but the only way that I can get the time differences to work properly is to leave the Total time for the day worked as a text field. If I change this field to a number or hh:mm it rounds up to the nearest hour and I don't want this. It needs to be as if some one clocked in at 0800 and out at 2030 the time total would reflect 12.50. I got it to do this by leaving the field as a text, but when I try to generate a report with several days of info on it it returns an error. I am using the code.
Total.Value =([Time out] - [Time in]) *24
this is for me to get the total for the day. If I do this anyother way it is returning a single number rounded to the next hour.
In my report I created an unbound text box named Total and have it's control set to =SUM([Total]
Can anyone help.
Thanks
Total.Value =([Time out] - [Time in]) *24
this is for me to get the total for the day. If I do this anyother way it is returning a single number rounded to the next hour.
In my report I created an unbound text box named Total and have it's control set to =SUM([Total]
Can anyone help.
Thanks
Comment