Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 23
Default need help making a formula

i need to make a formula that will show a commission rate of 5% sales over
15,000 with a 3% sales commission for lesser sales. Could someone please
help me with this.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,118
Default need help making a formula

A1: (a sales amount)

B1: =A1*.03+MAX(A1-15000,0)*.02

Is that something you can work with?
--------------------------

Regards,

Ron
Microsoft MVP (Excel)
(XL2003, Win XP)

"kath" wrote in message
...
i need to make a formula that will show a commission rate of 5% sales over
15,000 with a 3% sales commission for lesser sales. Could someone please
help me with this.



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,118
Default need help making a formula

Actually, if you use what I posted, it will fix itself.

This:
B1: =A1*.03+MAX(A1-15000,0)*.02

will become this:
B1: =A1*0.03+MAX(A1-15000,0)*0.02

(zeros preceding the decimal points)

--------------------------

Regards,

Ron
Microsoft MVP (Excel)
(XL2003, Win XP)


"Ron Coderre" wrote in message
...
A1: (a sales amount)

B1: =A1*.03+MAX(A1-15000,0)*.02

Is that something you can work with?
--------------------------

Regards,

Ron
Microsoft MVP (Excel)
(XL2003, Win XP)

"kath" wrote in message
...
i need to make a formula that will show a commission rate of 5% sales over
15,000 with a 3% sales commission for lesser sales. Could someone please
help me with this.





  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default need help making a formula

Does that mean if the sales were 27,336 -

3% of the first 15,000 + 5% of the next 12,336 ?

If that's the case:

A1 = 27,336

=IF(A1="",0,MIN(A1,15000)*0.03+MAX(A1-15000,0)*0.05)

Commisson = 1066.80


--
Biff
Microsoft Excel MVP


"kath" wrote in message
...
i need to make a formula that will show a commission rate of 5% sales over
15,000 with a 3% sales commission for lesser sales. Could someone please
help me with this.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Making too much of a formula Mick Excel Worksheet Functions 3 February 4th 07 04:45 PM
Making my Formula F1 Race Trackeous Excel Discussion (Misc queries) 0 December 14th 06 02:10 PM
Making a formula using letters Parkside1 Excel Discussion (Misc queries) 1 June 9th 06 09:14 PM
Making this formula work Kleev Excel Worksheet Functions 5 December 15th 05 12:42 AM
Making a formula continuous Neil_Pattison Excel Discussion (Misc queries) 4 October 7th 05 06:09 PM


All times are GMT +1. The time now is 08:20 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"