daniel_e
daniel_e

Reputation: 257

Nested IF statements with 3 conditions in excel

I have three conditions in ONE cell:

  1. IF A1 is smaller than 22000 write 3.600.
  2. IF A1 is bigger than 64000 write 9600.
  3. IF A1 is in between 22000 AND 64000 calculate A1+B2

I don't really get it working…

This is what I have for now: IF(OR(A1>64000;A1<22000);(A1+B1);IF(A1>64000;9600;))

Somehow the (A1<22000;3600;) is missing and won't fit anywhere... Totally lost.

Can someone help?

Upvotes: 1

Views: 44

Answers (1)

JGFMK
JGFMK

Reputation: 8904

Try this formula:

=IF(a1<22000,3600,IF(a1<=64000,a1+b2,9600))

Upvotes: 3

Related Questions