Hello,
I am trying to create a formula using an IF statement that will say "On Track" if there is one answer in the cell, but if there are more than one it will output "Delay". I am assuming my IF statement is counting the answers the way it is working now, however it isn't quite counting correctly and not sure what I'm missing.
The formula should say "On Track" since there is only one answer in this cell, but instead it says "Delayed". Can somebody please take a look and help me out?
This will become a large OR statement with all of the other status abbreviations following the same format.
=IF(IB@row < 2, "On Track", "Delayed")
Thank you!