Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
hi, i have a calculated measure to calculate a number that means seconds.
for example the measure = 150 (seconds)
i want the result will be 2:30 - 2 minutes and a half
how can i convert the measure?
thanks!
Solved! Go to Solution.
Hi @MP_123
One way would be to define a measure of type Time:
TimeMeasure = TIME ( 0, 0, [SecondsMeasure] )
(assuming your original measure is called SecondsMeasure).
You can then apply an appropriate format to the measure.
You could also use the FORMAT function if you are happy to have a Text measure.
Hi @MP_123
One way would be to define a measure of type Time:
TimeMeasure = TIME ( 0, 0, [SecondsMeasure] )
(assuming your original measure is called SecondsMeasure).
You can then apply an appropriate format to the measure.
You could also use the FORMAT function if you are happy to have a Text measure.