The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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.
User | Count |
---|---|
83 | |
82 | |
37 | |
34 | |
32 |
User | Count |
---|---|
92 | |
79 | |
61 | |
51 | |
51 |