Commission Calculations

C

claire

Hi

I need a formula (or anything!) that will either return
the value for commission or the percentage based on year
to date sales.

Commission rate is

<220000 4%
220001 <440000 6%
440001 <550000 9%
550001 10%

Thanks

PS can I get ISERROR to return a value of 3?
 
J

Jeff Jacobson

-----Original Message-----
Hi

I need a formula (or anything!) that will either return
the value for commission or the percentage based on year
to date sales.

Commission rate is

<220000 4%

Thanks

PS can I get ISERROR to return a value of 3?
.
Try this:
=IF(A1<220000,0.04,IF(A1<440000,0.06,IF(A1<550000,0.09,IF
(A1>54999,0.1,"N/A"))))
Where A1 is your first value.
 
C

claire

Thanks for that I was trying to make it more complicated
then it needed to be! I do have one further question -
how can I stop returning a value of 4% when blank?
 
C

claire

Sorted thanks for the help
-----Original Message-----
Thanks for that I was trying to make it more complicated
then it needed to be! I do have one further question -
how can I stop returning a value of 4% when blank?
.
 
V

Van

Try this,

=IF(AND(A1<220000,A1<>""),0.04,IF(AND
(A1<440000,A1<>""),0.06,IF(AND(A1<550000,A1<>""),0.09,IF
(AND(A1>549999,A1<>""),0.1,"N/A"))))

Van
 

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