Need help - How to show the number in minutes or hours

Need to display average wait time in my app. I inserted dynamic data as “Parent group’s Venue’s avg_wait_time”. But, how to display the timing in minutes and hours. This must be a basic question, but I’m kinda struck in here

You would have to do some math.

Is your average wait time in minutes, hours or something else?

Dynamic expression

(minutes_value ÷ 60):floor formatted as 00 + “:” + (minutes_value mod 60):floor formatted as 00

modulus 60 is used to get the leftover minutes after you’ve counted full hours.

Hi, thanks for replying! It could be in minutes, rarely in hours.

This is perfect, thanks a ton!

1 Like

Great, can you mark our answer as the solution? Thanks!

Done!