Forum Discussion
Anonymous
5 years agoNot applicable
Line chart show lines without zeros
Hello there,
hope you are well,
I do not want to show value 0s because it cause dramatic increase/decreases in my line chart.
Can you please help.
Anonymous , it is continuous axis, so showning blank should work
new measure =
if([measure]=0, blank(), [measure])
4 Replies
- amitchandakSuper User
Anonymous , it is continuous axis, so showning blank should work
new measure =
if([measure]=0, blank(), [measure])
- AnonymousNot applicable
A point on a line consists of an x and and y
You could remove the point (which means you dont show the months where the values is 0)
- RafgvaFrequent Visitor
Hello,
Would be easier if you give some sample data, but as I see it now:
Create a measure to be used in the chart:
.Values-skipping-zero =CALCULATE(MAX('YourDataTableName'[YourDataColumn]),'YourDataTableName'[YourDataColumn] > 0)...and use it for the chart in 'Values' field.Your thumb up if that helps will be appreciated. - AnonymousNot applicable
Yes however i need the months, because then they can filter in another line so there can be 2 lines. see below please