Which is the best way to convert a time value to an decimal.
We have some production shift which end a 02:00 am but they begin at 15:30. Almost, they have a variable break time to put after to calculate their production time.
We want to calculate the total production time.
Thanks to Help me.
0
Comments
Just use two Datetime variable, D1 on beginning, D2 on end, then get the time with D2-D1.
Regards.