Forum Discussion
koorosh
Post Partisan
2 years agobar chart with zero value
Hi all, How I can avoid bars with zero value in the following chart?
MFelix
Super User
2 years agoHi koorosh,
How is you measure calculated? Do you have 0 in your dataset? So that the sum is 0?
Try to do a measure similar to:
Value = IF(sum(table[column]) <> 0, sum(table[column]))
This will return blank when the values are 0.
koorosh
Post Partisan
2 years agocheck yourself, please.