Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.