Forum Discussion
jofa56
Sep 13, 2018Copper Contributor
Removing Zeros
Hi, I have an IF formula that looks like this. =IF(AND(C2="P1 & 10";H2="RUN");I2;0) My problem is that I get a column that looks like 5 0 0 0 -2 and so on. Is there a way to get ...
Haytham Amairah
Sep 13, 2018Silver Contributor
Hi,
Please replace the zero at the end of this formula:
=IF(AND(C2="P1 & 10";H2="RUN");I2;0)
With double quotes as follows:
=IF(AND(C2="P1 & 10";H2="RUN");I2;"")
Hope that helps