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 these measures:
Solved! Go to Solution.
Hi @Anonymous ,
I think the challenge you're facing stems from the fact that the FORMAT function converts your measures into text strings, which cannot be directly used in line charts as they require numeric values to plot the data points.
You can change your DAX codes.
Total_ACW_Seconds = SUM('All_NICE_Data'[Total_Handle_Time]) - SUM('All_NICE_Data'[Total_Talk_Time])
Total_Handle_Time_Seconds = SUM('All_NICE_Data'[Handle Time])
Total_Talk_Time_Seconds = SUM('All_NICE_Data'[Talk Time])
Then you can use it in the line chart and you can change the format as you like.
Total_ACW_HH_MM_SS =
VAR TotalSeconds = [Total_ACW]
RETURN FORMAT(TotalSeconds / 86400, "HH:MM:SS")
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
I think the challenge you're facing stems from the fact that the FORMAT function converts your measures into text strings, which cannot be directly used in line charts as they require numeric values to plot the data points.
You can change your DAX codes.
Total_ACW_Seconds = SUM('All_NICE_Data'[Total_Handle_Time]) - SUM('All_NICE_Data'[Total_Talk_Time])
Total_Handle_Time_Seconds = SUM('All_NICE_Data'[Handle Time])
Total_Talk_Time_Seconds = SUM('All_NICE_Data'[Talk Time])
Then you can use it in the line chart and you can change the format as you like.
Total_ACW_HH_MM_SS =
VAR TotalSeconds = [Total_ACW]
RETURN FORMAT(TotalSeconds / 86400, "HH:MM:SS")
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
70 | |
68 | |
43 | |
34 | |
26 |
User | Count |
---|---|
86 | |
49 | |
45 | |
38 | |
37 |