Format time left

I want to have a column that calculates the time left for delivery on a project. But I would like that it shows only the total amount of Hours left to delivery, not the day, hors, minutes, seconds…
what am I missing in this formula?

if(thisRow.[Delivery Date] > Now() and thisRow.Status=Open, format(Days(thisRow.[Delivery Date]-Now())), “Done”)

Thanks in advance!
Greeting,
Eva

Does ToHours() work for you?

if(
   thisRow.[Delivery Date] > Now() and thisRow.Status=Open, 
   ToHours(thisRow.[Delivery Date]-Now()).Round(2), 
   “Done”
)

The Round() at the end is optional, but will bring it to two decimal places

1 Like

Hi Jeane_carlos, IT didn’t quite work but I found something that works…:

if(thisRow.[Delivery Date] > Now() and thisRow.Status=Open,format(thisRow.[Delivery Date]-Now()).ToHours().Rounddown(), “Done”)

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.