IF Statement, multiple criteria

C

chickalina

Hello,
I need to write an IF statement for the following sales commission
calculation:

If <1000 then *.05
If >1000 but <3999 then *.1
If >4000 then *.125

Please help...
Thank you!
 
J

Jacob Skaria

Try this with your value in A1. You can add more criterias.

=A1*LOOKUP(A1,{0,1000,4000},{0.05,0.1,0.125})

If this post helps click Yes
 

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

Top