Michael Jolly
Michael Jolly

Reputation: 3

3 data sets results help required

I need a formula that requires the following to happen:

How can I do this in Excel?

I can get it to produce this =IF(OR(A1<=150),1,)*IF(OR(A1<151),2), but that only produces 2 outcomes.

Upvotes: 0

Views: 21

Answers (1)

Klas Lindb&#228;ck
Klas Lindb&#228;ck

Reputation: 33273

The else part can be a separate IF, so:

=IF(A1<=150,1,IF(A1<200,2,3))

Upvotes: 1

Related Questions