I have this formula in cell H2 which I thought would work but does not …
=IF(I2>J2,“more”,IF(I2=J2,“same”,IF(I2<J2,“less”,"")))
I’m trying to make the formula enter
more in H2 if I2 is greater than J2
same in H2 if I2 is the same as J2 or
less in H2 if I2 is lessthan J2.
Cell I2 contains the number 22. Cell J2 contains the number 11.
So to me, H2 should be filled with more.
But all I get is Err:501.
Also, Calc is automatically adding an extra parenthesis at then end. I have no idea why?
The formula I’ve entered is
=IF(I2>J2,“more”,IF(I2=J2,“same”,IF(I2<J2,“less”,"")))
as I said, but Calc is turning it into:
=IF(I2>J2,“more”,IF(I2=J2,“same”,IF(I2<J2,“less”,""))))
Please can someone help me. Thank you.