Forum Discussion
Romeshpsl
Advocate I
10 years agoSurpress Zero values in Charts
How do I get the x axis lables disapprear from the chart when values are zero. I can't really filter out when loading data, as these lables are from a calculated column.
Anonymous
10 years agoNot applicable
Create a new measure something like below , add it to your chart
Measure = CALCULATE(SUM(Table1[Value]),Table1[Value]>0)
- feelie753 years ago
Helper I
This worked perfect, thank you!! I'd like to add a word of caution though, I had to change the > to <> otherwise it bypassed negative values on a few months where we had negative sales due to Returns.