Forum Discussion
Multiple Line chart problem
- Anonymous2 years ago
Hi A_ksh ,
The hierarchy of the x-axis in the chart you have given is Quarter-Month-Day, and you can set up the same hierarchy as shown below.
Due to the design of PBI Desktop this is the closest you can get to an excel chart.
If you would like to suggest feature improvements, you may vote the idea and comment here to improve this feature. It is a place for customers provide feedback about Microsoft Office products . What’s more, if a feedback is high voted there by other customers, it will be promising that Microsoft Product Team will take it into consideration when designing the next version in the future.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi A_ksh ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2) We can create a calculated column.
Year = YEAR('Table'[Date])
(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- A_ksh2 years agoFrequent Visitor
Thank you so muc for the reply
But as you can see in excel line chart below we can have fixed x axis from january to december and it gives you option to choose year and different values of C10, C14 etc. so i select lets say 2021 and 2022 it gives me 2 lines of same C14 over the span of january to december, so that its easy to compare on month basis.
But in power BI it just extends the x-axis for 2 different year and even if i create table for month or select x axis for month it provides sum value for that month not the individual values of everyday. But in excel even though x axis is from Jan to Dec it still provides you daily data and makes graph more smooth.
here is the comparison of 2 same data in excel and in power bi.This is graph in Excel.
This is graph in Power Bi.
- Anonymous2 years agoNot applicable
Hi A_ksh ,
(1)We can create measures.
_c10 = SUM('Table'[C10])_c14 = SUM('Table'[C14])_c16 = SUM('Table'[C16])...
(2)Creating Field Parameter.
(3)Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- A_ksh2 years agoFrequent Visitor
Thank you for the reply but the Y axis data is showing monthly agrregated value whereas i have daily data and want daily data to be displyed instead of SUM data of month even though i have selected x axis to be month.
Is there you can help me on this.