Forum Discussion
Markzolotoy
Impactful Individual
3 years agoStacked chart - always show zeros
Let's say I have a stacked chart that shows two categories. When one category's value is zero it is not shown in the chart. Can I enforce it to show all the time?
Thanks
ouaelaam
Resolver I
3 years agoYou can use a measure like this :
IF(
ISBLANK( [Value] ),0,
[Value]
)
Markzolotoy
Impactful Individual
3 years agoouaelaam The value is not really blank, it is numeric zero.
- ouaelaam3 years ago
Resolver I
You can try to replace 0 with a very small value like 0.00001.
- Markzolotoy3 years ago
Impactful Individual
ouaelaam Nope.