Reputation: 3
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
Reputation: 33273
The else part can be a separate IF
, so:
=IF(A1<=150,1,IF(A1<200,2,3))
Upvotes: 1