How to convert Duration 00:00:00 into "0 h 00 min"

What is the virtual column expression to convert Duration column of 00:00:00 into “0 h 00 min” removing the seconds.
Thanks!

Solved Solved
0 7 912
1 ACCEPTED SOLUTION

Thanks @Suvrutt_Gurjar

The final expression I landed on was this. Always a big help.

IF(
HOUR([DURATION])=0,
CONCATENATE(MINUTE([DURATION]), " min"),

IF(
HOUR([DURATION])>0,
CONCATENATE(HOUR([DURATION]), "h “, MINUTE([DURATION]), " min”), “”)

)

View solution in original post

7 REPLIES 7
Top Labels in this Space