Skip to main content
Solved

Nested IF Statements Error

  • February 4, 2022
  • 2 replies
  • 12 views

I’m trying to add a column into my financial forecast that shows whether Column A + Column B = Column C. If the value in Column C doesn’t match I’d like it to show me that it’s incorrect.

The formula I have so far is below but I can’t get around the error. Can anyone tell me what I’m doing wrong?

IF({Revenue Recognised in FY22}+{Year Recognised To Date}={Contract Value},“MATCH”,IF({Revenue Recognised in FY22}+{Year Recognised To Date}>{Contract Value},“INCORRECT”,IF({Revenue Recognised in FY22}+{Year Recognised To Date}<{Contract Value},"INCORRECT”)))

Any advice is appreciated! Thanks

Best answer by ScottWorld

You could just simplify your formula like this:

IF({Revenue Recognised in FY22}+{Year Recognised To Date}={Contract Value},"MATCH","INCORRECT")

2 replies

ScottWorld
Forum|alt.badge.img+35
  • Genius
  • Answer
  • February 4, 2022

You could just simplify your formula like this:

IF({Revenue Recognised in FY22}+{Year Recognised To Date}={Contract Value},"MATCH","INCORRECT")


  • Author
  • New Participant
  • February 4, 2022

You could just simplify your formula like this:

IF({Revenue Recognised in FY22}+{Year Recognised To Date}={Contract Value},"MATCH","INCORRECT")


Thank you Scott! That’s worked :grinning_face_with_smiling_eyes: