=IF(AND(D3="Y",F3="pos"),"Y",IF(AND(D3="N",F3="neg"),"N","Don't Match Either Criteria"))
Do you mean something like this?
Code:=IF(AND(D3="Y",F3="pos"),"Y",IF(AND(D3="N",F3="neg"),"N","Don't Match Either Criteria"))
I hope this helps!
Code:=CHOOSE(1+((D3="Y")*(F3="pos"))+((D3="N")*(F3="neg")*2), "No Match", "Y", "N")