Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Akshay_Aso-
Frequent Visitor

Need help on Time Line chart

I need to create a Line chart of average time per month. I have a table that has month and year in one column and in another column i have hour, minute and second H:MM:SS ie, 0:01:55 format. I need to create a line chart that will give average of time per month and the time in the line chart should show in the below format,

H:MM:SS ie, 0:01:55.

when i create a line chart i am getting count of Average time and i not able to change to Dont Summarise also. this option itself is not showing. 

Could anyone help me on this ?

I am new to power Bi, Step by step process of explanation will be much helpful.

Thanks in Advance 😀

1 ACCEPTED SOLUTION
v-yalanwu-msft
Community Support
Community Support

Hi, @Akshay_Aso- ;

Unfortunately, that seems unlikely at the moment. The problem is that metrics that do not return integer or decimal values cannot be used as values in bar/line charts.

The best thing you can do right now is to add metrics as a tooltip.

So, given a metric [Duration in Seconds] that returns an integer or decimal value, create a new metric:

1.change to seconds

second = var _hour= CONVERT( LEFT(MAX('Table'[DateTime.2]), FIND(":",MAX('Table'[DateTime.2]),1)-1),INTEGER)
var _min= MID( MAX('Table'[DateTime.2]), FIND(":",MAX('Table'[DateTime.2]),1)+1,2)
var _sec= RIGHT(MAX('Table'[DateTime.2]),2)
return _hour*3600+_min*60+_sec

2.averge the seconds every month. then change it to hour.

aver = AVERAGEX(FILTER(ALL('Table'),EOMONTH([DateTime.1],0)=EOMONTH(MAX('Table'[DateTime.1]),0)),[second]) /3600

3.format it to hh:mm:ss as tooltip

formatave = 
INT([aver])
&":"&INT(([aver]*3600-INT([aver])*3600)/60)
&":"&FORMAT( INT( MOD([aver]*3600,60)),"00")

The final output is shown below:

vyalanwumsft_0-1642055324720.png


Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yalanwu-msft
Community Support
Community Support

Hi, @Akshay_Aso- ;

Unfortunately, that seems unlikely at the moment. The problem is that metrics that do not return integer or decimal values cannot be used as values in bar/line charts.

The best thing you can do right now is to add metrics as a tooltip.

So, given a metric [Duration in Seconds] that returns an integer or decimal value, create a new metric:

1.change to seconds

second = var _hour= CONVERT( LEFT(MAX('Table'[DateTime.2]), FIND(":",MAX('Table'[DateTime.2]),1)-1),INTEGER)
var _min= MID( MAX('Table'[DateTime.2]), FIND(":",MAX('Table'[DateTime.2]),1)+1,2)
var _sec= RIGHT(MAX('Table'[DateTime.2]),2)
return _hour*3600+_min*60+_sec

2.averge the seconds every month. then change it to hour.

aver = AVERAGEX(FILTER(ALL('Table'),EOMONTH([DateTime.1],0)=EOMONTH(MAX('Table'[DateTime.1]),0)),[second]) /3600

3.format it to hh:mm:ss as tooltip

formatave = 
INT([aver])
&":"&INT(([aver]*3600-INT([aver])*3600)/60)
&":"&FORMAT( INT( MOD([aver]*3600,60)),"00")

The final output is shown below:

vyalanwumsft_0-1642055324720.png


Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks @v-yalanwu-msft for the help. 👍

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.