Having a brain freeze - can't get the syntax quite right. Hopingsomeone can help me ...ColA B C1 Process Steve Steve2 Service John Service3 Process Jeff JeffIf result in A1 = "Process" and B1 = "Steve" or "Jeff", bring back theresult from col B otherwise bring back the result from col A (put theformula's result in col C).
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)