How can I replace decimal number with two decimal places to hourly like number.

2.42 > 2:42h
How can I replace decimal number with two decimal places to hourly like number.

2.42 > 2:42h
Best answer by Mohamed_Swella1
Hi @Michael1 ,
I would do the following:
The lookup field would be a Rollup and set to get the AVERAGE(values)
Then in the formula field I would do something like this
DATETIME_FORMAT(DATETIME_PARSE({Numbers},‘hh:mm’),‘hh:mm’)

Or if you want to keep it as a LookUp field you can put the formula like that
DATETIME_FORMAT(DATETIME_PARSE(AVERAGE({Numbers}),‘hh:mm’),‘hh:mm’)
Hope this helps
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.