I would like to check three cells, and if the first two are "Yes" then put text in a specific cell, and if all three are "Yes" then different text in that specific cell.
Example:
Yes | Yes | No | "Sort of Working"
Yes | Yes | Yes | "Working
No | No | Yes | "Not working"
Basically, if all three say Yes then it is "Working" if not, then it is "Not working" by using a formula
Thank you
=IF(AND(E2="Yes",F2="Yes",G2="Yes"),"Working", "Not Working")