Forum Discussion

Deleted's avatar
Deleted
Aug 02, 2019
Solved

If cells equal then next returns

Hello, Could someone help me with a formula to produce the below: - If cell A1 has the word “apple” - and then cell B1 has the word “orange” - return the word “fruit” in cell C1 Thanks
  • Ruth de Groot's avatar
    Aug 02, 2019

    Deleted this formula in C1 should work

     

    =IF(AND(B1="orange",A1="apple"),"fruit","not fruit")