0

Thanks in advance, I am doing something dumb that I'm just not seeing.

=IF(ISNUMBER(L36),  IF( L36 < K3, "PASS", "FAIL"), "PASS", "N/A")

why doesn't his work?

1
  • waiting for my face meeting palm moment Commented Mar 13, 2017 at 16:25

1 Answer 1

6

Your first IF statement has four arguments (one too many!). You probably just want to remove the last "PASS" argument?

=IF(ISNUMBER(L36),IF(L36<K3,"PASS","FAIL"),"N/A")
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.