Excel Formula

L

LMac

Can anyone help me with a formula that looks at mutiple column values and
returns a specific value? Here is an example:

Class I If column 1 is ≤ 3000ppm; and cloumn 2 is ≤ 10ppg; and column 3 is ≤
5%; ≤ 10
Class II If column 1 is > 3000ppm ≤ 10000ppm; and column 2 is > 10ppg ≤
12ppg; and column 3 is > 5% ≤ 10%
Class III If column 1 is > 10000ppm; and column 2 is > 12ppg; and column 3
is > 10

Thanks, Lisa
 
S

~slacker~

is this what you are looking for/

=IF(AND(A1<=3000,B1<=10,C1<=5),"Class
I",IF(AND(A1>3000,A1<=10000,B1>10,B1<=12,C1>5,C1<=10),"Class
II",IF(AND(A1>10000,B1>12,C1>10),"Class III","")))
 
J

JasonP CCTM LV

I dont see anything in there that looks like what the result should be. It
looks like all you have is conditions.

What exactly do you want the formula to do?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Excel Formula 2
Excell Formula 2
Excell Formula 2
Excel formula 1
Multiple Count Ifs 3
Macro or Formula to merge data 6
SumProduct (I think!) question 4
Merging and matching spreadsheets 3

Top