Excel Formula

  • Thread starter Thread starter LMac
  • Start date Start date
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
 
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","")))
 
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

ARRAY with countif 6
Macro to add numbers in a text string 5
Excel VBA 1
excel copy and paste... 2
Help needed 0
Vlookup with If condition 1
Excel Help with dates 2
Sum a range based on a column 2

Back
Top