How is the formula to get time in minutes from the duration field type?
Thank you
Mauro
I entered this formula, I expect a value of 60 minutes but I get 0 zero!
number(timestamp(format(Durata, "m")))
Duration fields return a value in milliseconds. To get the value of a duration field in seconds, simply divide it by 1000:
number(Durata)/1000