IF OR NESTED STATEMENT

  • Thread starter Thread starter SuperBee
  • Start date Start date
S

SuperBee

Can someone help with If statement.

Column A - text entered will be Audit or Review
Column B - numbers 0 and higher

Column C - If A = "audit" and B is = or > 200 then C results as A-200 OR If
B = "review" and B is = or > 60 then C results as C-60

Many thanks!
 
In C1:
=if(and(A1="Audit",B1>=200),"A-200",if(and(A1="Review",B1>=60),"C-60,""))
Copy down as required.
 
OOPs!

insert the closing inverted commas " in the formula after C-60 like "C-60".
 
Wonderful.....it worked. However, if the statement is false, I want the
result to be "n/a"
 
Back
Top