Apr 13, 2018 08:51 AM
Before the duration field was added, I was using “Start” and “Stop” fields with this formula:
IF( AND(NOT({Start}), NOT({Stop})), "", IF( {Stop}, ROUND((DATETIME_DIFF(Stop, Start, 'minutes') / 60) * 4 , 0) / 4 , ROUND((DATETIME_DIFF(NOW(), Start, 'minutes') / 60) * 4 , 0) / 4 ))
This gave me a nicely rounded decimal number for billing purposes.
I’d like to use the new duration field to eliminate a step here, but can’t figure out how to convert that fields value.
Apr 13, 2018 09:07 AM
I believe the duration field passes it’s value as Seconds to any formulas, so if you divide your duration field by 3600, it will give you the duration in Hours - then use formatting to get your decimal to the precision of your choosing. (I think that should get you where you want).
Apr 26, 2018 02:50 PM
Ha! I was just about to ask a similar question. Thanks again Jeremy!
Sep 20, 2021 10:11 AM
I know you wrote this 3 years ago, but thank you man. You just saved my bacon.