Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have a DAX measure to convert my [Duration in sec] to hh:mm:ss text format. However, if I have several measures which I need to convert to hh:mm:ss text format, e.g. [call Duration in sec], [call Duration in sec wk], [email duration in sec], [email Duration in sec wk], is there a way that I will only create one DAX measure 'Time in Text' that formats them all?
Time in Text =
VAR Seconds = [Duration in sec]
VAR Minutes =
INT ( Seconds / 60 )
VAR RemSeconds =
MOD ( Seconds, 60 )
VAR Hours =
INT ( Minutes / 60 )
VAR RemMinutes =
MOD ( Minutes, 60 )
RETURN
Hours & ":" & RemMinutes & ":" & RemSeconds
User | Count |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
12 | |
10 | |
6 |