I'm trying to add and additional item to this IF Statement, when the total column is exceeding 150 and the Total Percent Used Column is Blank. This is my existing IF Statement
=IF([Total Percent Used]@row < 0.5, "", IF(AND([Total Percent Used]@row >= 0.5, [Total Percent Used]@row <= 0.75), "Approaching", IF([Total Percent Used]@row > 0.75, "Notify", IF([Total Percent Used]@row < 100, "Exceeds"))))
I'm trying to add the following: IF(AND([Total Percent Used]@row = 0, [Total]@row >150000, "Review")
The second formula is not working when added or returns a blank. What am I missing