Hi.
I have two Date files with Time Called Start and End
e.g.:
Start=08.05.2024 09:54
End= 08.05.2024 12:00
in another filed I'd like to calculate this into hours rounded to full 15 minutes using:
Hi.
I have two Date files with Time Called Start and End
e.g.:
Start=08.05.2024 09:54
End= 08.05.2024 12:00
in another filed I'd like to calculate this into hours rounded to full 15 minutes using:
Hi,
ROUND and ROUNDUP functions are used with 2 parameters, (value, precision)
In ROUND you can omit 2nd parameter (default is 0), while in ROUNDUP - cannot 🙂
So,
IF(AND({End}, {Start}), ROUNDUP(
DATETIME_DIFF({End}, {Start}, 'minutes')/15,0
)/4)
Hi,
ROUND and ROUNDUP functions are used with 2 parameters, (value, precision)
In ROUND you can omit 2nd parameter (default is 0), while in ROUNDUP - cannot 🙂
So,
IF(AND({End}, {Start}), ROUNDUP(
DATETIME_DIFF({End}, {Start}, 'minutes')/15,0
)/4)
thanks a lot, that did the trick
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.