Forum Discussion
Anonymous
5 years agoNot applicable
How to do an IF greater than function when cell is not blank
I have this measure that is working well, but when the [Expected Flow] is not calculated for certain areas, the result is still "Exceeds limit". I would like an 'IF NOT BLANK' filter to be added as ...
- 5 years ago
Red Flag for Overflow =
IF (
ISBLANK ( Water[Flow] ),
"Exceeds Limit",
IF ( Water[Flow] > Water[ExpectedFlow], "Exceeds Limit", "" )
)
vanessafvg
Community Champion
5 years agoRed Flag for Overflow =
IF (
ISBLANK ( Water[Flow] ),
"Exceeds Limit",
IF ( Water[Flow] > Water[ExpectedFlow], "Exceeds Limit", "" )
)