The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
If we have a #duration in Power Query M and then try to manipulate it in DAX it will be converted to a date/time. Now if you still want to have the date/time displayed like a #duration you can use the following:
VAR DurationAsDecimal = [#duration] RETURN IF(ISBLANK(DurationAsDecimal), BLANK(), IF(TRUNC(DurationAsDecimal)<>INT(DurationAsDecimal), "-"&TRUNC(DurationAsDecimal)&"."&FORMAT(DurationAsDecimal,"HH:mm:ss"), INT(DurationAsDecimal)&"."&FORMAT(DurationAsDecimal,"HH:mm:ss") ) )
User | Count |
---|---|
14 | |
12 | |
8 | |
6 | |
5 |
User | Count |
---|---|
29 | |
19 | |
13 | |
8 | |
5 |