Assuming the col J values are logical values and not text values, then the "TRUE" should not have the quote marksWhat is wrong with this formula in this table?
=IF(J2=TRUE,E2,G2)
=IF(J2,E2,G2)
True is a logical a value. Result of =ISNUMBER(Sheet1!$E2)Assuming the col J values are logical values and not text values, then the "TRUE" should not have the quote marks
Excel Formula:=IF(J2=TRUE,E2,G2)
But you don't need the TRUE at all, try
Excel Formula:=IF(J2,E2,G2)
The problem is not with IF command as no other IF command works. This table doesn't accept any formula, even F2=E1+E2. I should look for formula input options.Assuming the col J values are logical values and not text values, then the "TRUE" should not have the quote marks
Excel Formula:=IF(J2=TRUE,E2,G2)
But you don't need the TRUE at all, try
Excel Formula:=IF(J2,E2,G2)
Your
Thanks. That was the source of the problem and now solved.Your cells are most likely formatted as Text. Change to General and re-enter the formula again.