Forum Discussion
BIuser45
2 years agoFrequent Visitor
DAX not working when evaluating = zero
I have a forumla like this: PER = IF([Expense]=0,BLANK(),[Profit-Expense Ratio %]), but it doesn't work. It stills returns the [Profit-Expense Ratio %]. The expense shows 0, but actually the number i...
Anonymous
2 years agoNot applicable
Hi BIuser45
You can try the following code
COLUMN =
IF (
ABS ( [Expense] ) >= 0
&& ABS ( [Expense] ) < 0.5,
BLANK (),
[Profit-Expense Ratio %]
)
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.