A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
THIS WORKED! thank you again
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
this is my current formula: =IF(AND(L23=J27:U27), "PASS", "FAIL")
I need the formula to ignore when all the cells are blank. I also need the formula to ignore a blank cell when the rest are all "P"
note: I dont have a "Developer" option.
L23=P
| 26 | J | K | L | M | N | O | P | Q | R | S | T | U | Sample Pass? |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 27 | P | P | P | P | P | P | P | P | P | P | P | P | PASS |
| 28 | P | P | P | P | P | P | P | P | P | P | P | FAIL | |
| 29 | P | X | P | P | P | P | P | P | P | P | P | FAIL |
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
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.
THIS WORKED! thank you again
Like this:
=IF(COUNTA(J27:U27)=0, "", IF(COUNTIFS(J27:U27, "<>P", J27:U27, "<>"), "FAIL", "PASS"))
=IF(COUNTIFS(J27:U27, "<>P", J27:U27, "<>"), "FAIL", "PASS") WORK GREAT!
IS THERE AWAY THAT THE FORMULA IN THAT CELL CAN ALSO NOT FORMULATE IF ALL THE CELLS ARE BLANK?
Try
=IF(COUNTIF(J27:U27, "X"), "FAIL", "PASS")
or
=IF(COUNTIFS(J27:U27, "<>P", J27:U27, "<>"), "FAIL", "PASS")