• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Sales Comission

eabwhat13

New Member
I am looking to put together a sales comission chart for a tiered sales structure

[pre]
Code:
0       -   3,000    = 3%
3001    -   6000     = 5%
6001    -   10,000   = 8%
10,001+              = 12%
[/pre]
Can someone help me with the formula for this?
 
Hi eabwhat13,


Welcome to the Forums!!! When posting sample data, enclose it in backticks (`), this will made reading and indentation easier.


You can use VLOOKUP(), if your data in A1:B4, this will work:


Code:
=VLOOKUP(D1,A1:C4,3)


...D1 contains lookup value.


Regards,
 
Back
Top