Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have a graphic and I need to hide a value 'NE' in a bar chart:
Anybody can help me?
tks.
Hi, @mendes094
Basically, this can be easily done by customizing the limitation > 0 graph, as in the screenshot below:
Hi, @mendes094
Basically, this can be easily done by customizing the limitation > 0 graph, as in the screenshot below:
In addition, if you want to always exclude the NE value, even if it's >0.
Then you could use set analysis to exlude the specified value.
Sum({< Region -= {'NE'}>} Value)
This will always exlude 'NE', no matter the value.
Regards
Thanks, its work!
Hi @mendes094
Add-ons -> Data handling -> Disable: Include zero values
Excluding a specific dimension value is via Set Analysis like NoahF mentioned
Sum({< Region -= {'NE'}>} Value)
This would prevent the barchart for showing any 0 or negative values.
Disabling: Include zero values would not have this side effect
@p_verkooijen That's right, already imagining this scenario this would certainly be a better approach.