Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Have an issue with a line chart showing multiple lines each representing a year. 2016 line continues even though there is no data for november and december. How can i get rid of this?
Hey @madden318,
Easy fix, go to the paint roll "Format" tab and under the "X-Axis" dropdown, change the type to "Categorical" instead of "Continuous". This should stop the graph at the last point.
Hope this helps,
Alan
Thanks Alan but it is already on the categorical setting. Has this ever fixed it for you?
Yes it is definitley adding 0 values into may data where there is none. Tried switching it to a line and stacked volume chart and it did the same thing.
Hi @madden318,
You should be able to use BLANK Function (DAX) to skip the value 0 in this scenario. For example, if you are showing "Total Sales" on the Line Chart.
Total Sales = SUM ( Sales[Revenue] )
Then you should be able to show the following measure instead on the Line Chart to skip the value 0.
Measure = IF ( [Total Sales] = 0, BLANK (), [Total Sales] )
Regards
I am typing this on an iPad and have not tested this so this is just a guess...
However I suspect your Calendar table runs till the end of the current year if not beyond...
so try adding a FILTER statement in the Measure you are charting to only calculate till today
something like this...
Measure = CALCULATE ( SUM (...), FILTER ( ALLSELECTED ( 'Calendar' ), 'Calendar'[Date] <= TODAY () )
Again I have not tested this - just a suggestion.
User | Count |
---|---|
84 | |
81 | |
65 | |
52 | |
46 |
User | Count |
---|---|
100 | |
48 | |
42 | |
39 | |
38 |