Forum Discussion
ppgandhi11
Helper V
8 years agohow to display 0 values?
Hi, I have a measure as below: TotalDenied = CALCULATE(count(Query1[IsWithinBM]), Query1[IsWithinBM] = "N") Whenever the value of TotalDenied > 0, it displays fine, but when the value is ...
- Anonymous8 years ago
Hi
A simple solution : Add +0 to your formula.
CALCULATE(count(Query1[IsWithinBM]), Query1[IsWithinBM] = "N") + 0
P.S: I got this idea few days back from a old post , dont remember exactly but i think it was Sean who posted this idea.
Thanks
Raj
Anonymous
8 years agoNot applicable
Hi
A simple solution : Add +0 to your formula.
CALCULATE(count(Query1[IsWithinBM]), Query1[IsWithinBM] = "N") + 0
P.S: I got this idea few days back from a old post , dont remember exactly but i think it was Sean who posted this idea.
Thanks
Raj