Perhaps this:
=IF(F23="","",IF(F23<90,"NI", IF(F23<100,IF(F25<40,"SUC","NI"),
IF(F23<115,"SUC",IF(F23<125,"SUP","EXC")))))
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Ok so I have a working formula I'm trying to add on to, =IF(F23="","",IF(F23<100,"NI",IF(F23<115,"SUC",IF(F23<125,"SUP","EXC")))) this formula rates the cell depending on the value in cell F23. However I'm trying to add an exception to this formula to say SUC if F25 <40 and F23 is between 90-100. I'm not sure if this is possible but if anyone has a solution or idea as to how to fix my problem it would be very appreciated! Thanks in advance!
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Perhaps this:
=IF(F23="","",IF(F23<90,"NI", IF(F23<100,IF(F25<40,"SUC","NI"),
IF(F23<115,"SUC",IF(F23<125,"SUP","EXC")))))
Hi,
The formula in cell G23 is
=IF(F23="","",VLOOKUP(F23,$A$2:$C$6,3,1))
Here's a screenshot
Thank you both very much for the help. This worked like a charm!
You are welcome. If my reply helped, please mark it as Answer.