Hi all, I am trying to create a timesheet within monday.com. All of these hours are flexible and can include nightshifts.
Currently I have the following setup.
Start is an hours column
Finish is an hours colmn
Actual is a formula of - ROUND(TIMEVALUE("1/1/1 " & HOURS_DIFF({Finish},{Start}))*24,2)
Start Finish Actual
08:00 19:14 11.23
The above works fine for day shifts. Night shifts the formula does not work.
Night shift would look like
Start Finish Actual
19:00 07:15 !!! - Want this to return 12.23
Can anyone help?