How can I change the commission rate% for different employees?

G

Guest

For a Sales Commission Calculator
I would like to be able to change the commission rate% for different
employees. As well, I would like to adjust the rate automaticaly for
different goals. ex.: employee under $100,000=1% commission then employee
over $200,000=2% commission etc...
 
C

Carim

Hi,

Your mail is more of a wish than a precise request ...
From what you wrote, I would say it is feasible probably wit
sumproduct()
function ...

Cari
 
B

Bryan Hessey

Assuming your salesmancode is in column A, your sales in column B, you
commission table in column F and G (0,100000,200000,300000,400000 i
column F, 1,2,3,4,5 etc in column G), then

=VLOOKUP(SUMIF(A$1:A$9,A1,B$1:B$9),F$1:G$5,2,TRUE)

should achieve this.

--
 
G

Guest

I believe that you can use in this case the If statement .eg if employee
payments <10000, 1%, if.....

Hope this will help

Ο χÏήστης "evdesign" έγγÏαψε:
 

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