Thread: If And Or
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default If And Or

try

=IF(AND(OR(A1=UPPER("PASS"),A1=UPPER("Exempt")),OR (A2=UPPER("PASS"),A2=UPPER("EXEMPT"))),"Full Award","")

Mike

"k11ngy" wrote:

Trying to nest a statement together but have problems

I need to:

If A1 and A2 = pass then Full award, Else ""

I also need to nest in for example

If A1 = pass or exempt and a2 = Pass, Exempt then full award else ""

Cant seem to fathom it

Thanks for help

Steve