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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello All,
I am trying to create a chart for total time taken on call. I have just two labels one is Name and another one is total talktime.
Below is the snip of it and I am not able to create a chart of it as it taking as count! anyone help me out how I can do this??
How I can create chart like below in power bi?
Please help me out with it!! Thank you in advance.
Solved! Go to Solution.
You have the wrong X axis for a line chart. There is no correlation between the names, so they should not be linked via a line. A column chart is more appropriate.
Hi @parthpatelalex ,
You may consider converting the time type to a numeric type. For example create a new calculated column and convert it to minutes:
Taktime2 = HOUR('Table'[Talktime]) * 60 + MINUTE('Table'[Talktime]) + SECOND('Table'[Talktime]) / 60
I also second lbendlin's suggestion to use column charts:
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly--How to provide sample data in the Power BI Forum--China Power BI User Group
Thank you, I have convert the time into seconds and then asign actual data values to the Detailed Labels field and its works properly..
Thanks again 🙂
Hi @parthpatelalex ,
You may consider converting the time type to a numeric type. For example create a new calculated column and convert it to minutes:
Taktime2 = HOUR('Table'[Talktime]) * 60 + MINUTE('Table'[Talktime]) + SECOND('Table'[Talktime]) / 60
I also second lbendlin's suggestion to use column charts:
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly--How to provide sample data in the Power BI Forum--China Power BI User Group
Thank you, I have convert the time into seconds and then asign actual data values to the Detailed Labels field and its works properly..
Thanks again 🙂
You have the wrong X axis for a line chart. There is no correlation between the names, so they should not be linked via a line. A column chart is more appropriate.
Thank you! 🙂 Yes the column charts works perfectly for me!