I have a list of numeric duration values:
1:00:00
3:00:00
2:30:00
4:45:00
that I would like to convert into text string values in a certain format:
xxh yym (h=hours, m=minutes)
So the above should look like:
1h 00m
3h 00m
2h 30m
4h 45m
I need to solve this preferably with a formula so I can convert 8k rows. What's the best way to go about this?