eli
6
@dantidmas88,
Here’s a simple solution for displaying this in minutes. No need to extract the decimal, simply multiply the entire value by 60 and then get the remainder of that number divided by 60 using the modulo operator. Like this:

Here’s the result:

You will need to account for numbers under 10 since those will display as a single-digit so change the above to this. Essentially this checks first if the value is less than 10 minutes and if it is, it will add a 0 before the value.

Good luck!
Eli
1 Like