Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

suppress zero values in Group


Hi All,

I have one chart in this, am adding some dimension (for ex, used dmension is a location group) , in this group dimension return some values are zero, how toeliminate this zero, while displaying the chart.

Regards,

Senthil.K

zero.png

5 Replies
senpradip007
Specialist III
Specialist III

Could you please upload sample qvw?

anbu1984
Master III
Master III

Use calculated dimension and set "Suppress when value is Null"

If([location group] <> '0',[location group])

Not applicable
Author

Hi Cheliyan,

thanks for ur quick response , i will try and let know.


sujeetsingh
Master III
Master III

use calculated diemsion

amit_saini
Master III
Master III

Senthil,

Try this as calculated dimension:

=if (not isnull([location group]),[location group])

Thanks,
AS