Hey I have the following if formula:
=IF(G18=" ",0,ECS!$FJ$129)
It references a list in G18. When the list is blank I want it to return 0, but when it is populated I want it to return the value in FJ129. Currently it is always returning 0 in the cell, no matter what G18 is. If I change the formula to the below it always returns FJ129 value of 75. How can I have it correctly differentiate between a blank and a nonblank?
=IF(G18="",0,ECS!$FJ$129)
=IF(G18=" ",0,ECS!$FJ$129)
It references a list in G18. When the list is blank I want it to return 0, but when it is populated I want it to return the value in FJ129. Currently it is always returning 0 in the cell, no matter what G18 is. If I change the formula to the below it always returns FJ129 value of 75. How can I have it correctly differentiate between a blank and a nonblank?
=IF(G18="",0,ECS!$FJ$129)