My problem: in Sheet1 Cell A5 formula:
=((A1-A2)+(A3-A4))/2
In Sheet2 Cell A1 an IF function:
=IF('Sheet1'!A5=1;"Good";0)
Excel only returns the "value if false".
Any suggestions?
UPDATE:
Where´s the thing:
I´ve tried with different cells and it works just fine it only fails with this specific cell
What might be the problem?
Problem Solved =IF('Sheet1'!A5<>1;"Good";0)
The equal element does not work alone.