Forum Discussion
Greg Bonaparte
Apr 26, 2019Iron Contributor
add criteria to the following formula
I would like to add criteria to the following formula that says if cell BB30 has any data then true, if not cell remains blank =IF(AND( IF($D$20>0,$AB30<$AC30,1), IF($F$20>0,$AD30<$AE30,1), IF($H...
- Apr 26, 2019
Hi Greg,
You formula
=IF( AND(...), ($Q30/$P30), "")
you could modify as
=IF( AND(...)*(LEN(BB30)>0), ($Q30/$P30), "")
If any data it changes nothing, if not entire expression is FALSE and formula returns empty string
SergeiBaklan
Apr 26, 2019Diamond Contributor
Hi Greg,
You formula
=IF( AND(...), ($Q30/$P30), "")
you could modify as
=IF( AND(...)*(LEN(BB30)>0), ($Q30/$P30), "")
If any data it changes nothing, if not entire expression is FALSE and formula returns empty string