Forum Discussion
o59393
6 years agoPost Prodigy
Return zero when numerator is blank
Hi all I am doing a dax to return a zero when the numerator is blank. The problem I have is that after I create the mesaure, I get a bunch of zeros from dates that have no data. The orig...
- Anonymous6 years ago
o59393
The problem is your second condition SUM(production[production]) <> "", <> is not equal to in DAX.
Do you want to make this condition not equal to blank? If so, try replace withNot ISBLANK(SUM(production[production]))Or you want some thing else?
Paul Zheng
Don't forget to hit THUMBS UP and mark it as a solution if it helps you!
Anonymous
6 years agoNot applicable
o59393
The problem is your second condition SUM(produc
tion[production]) <> "", <> is not equal to in DAX.
Do you want to make this condition not equal to blank? If so, try replace with
Not ISBLANK(SUM(production[production]))Or you want some thing else?
Paul Zheng
Don't forget to hit THUMBS UP and mark it as a solution if it helps you!