Are you looking for a VBA-related answer? If so, I'm not sure whatyou're asking. If not, either of these formula should work:=IF(A1="Process",IF(B1="Steve",B1,IF(B1="Jeff",B1,A1)),A1)=IF(AND(A1="Process",OR(B1="Steve",B1="Jeff")),B1,A1)