I have a column called “Hours” which displays a decimal of time so 2 is 2 Hours, 0.5 is 30 mins etc etc
How can I get a formula column to display the time as 00H 00M
I have tried this: TEXT(ROUNDDOWN(({Hours})/3600,0),"#0") & "h " & TEXT(ROUNDDOWN(MOD(({Hours}),3600)/60,0),"00") & "m"
but I’m just getting 0 at the moment.
Oh sorry! I 've just taken your example and put that directly in the formula column, RIGHT("0" & INT({Hours}), 2) &"h "& RIGHT("0" & (MOD({Hours},1) * 60), 2) & "m"
which is showing 0.33 as 0.8 rather than 20m - also 0.17 should be 10m
the 3 hours is right and the .25 (15m) is right too