Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Calculating Commissions

Help with the following.

Example:

A1 = Renewal sale or increase value from Existing Business (5% Commissions)
A2 = New Business from New Customers (7.5% Commissions)
A3 = Reduce Sale from Existing Business (3% Commissions)

Can someone help me with a formula that will return the correct commission
value in cell A4 based on the commission structure above?

Please note that all 3 cells will never be populated at the same time. Only
1 cell A1, A2, A3) will be populated per row.








--
Sam
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,942
Default Calculating Commissions

hi,
try something like this....

=((A1*0.05)+(A2*0.07)+(A3*0.03))

regards
FSt1


"Real Spice" wrote:

Help with the following.

Example:

A1 = Renewal sale or increase value from Existing Business (5% Commissions)
A2 = New Business from New Customers (7.5% Commissions)
A3 = Reduce Sale from Existing Business (3% Commissions)

Can someone help me with a formula that will return the correct commission
value in cell A4 based on the commission structure above?

Please note that all 3 cells will never be populated at the same time. Only
1 cell A1, A2, A3) will be populated per row.








--
Sam

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4,624
Default Calculating Commissions

One way:

=SUMPRODUCT(A1:A3,{0.05,0.075,0.03})*A4

In article ,
Real Spice wrote:

Help with the following.

Example:

A1 = Renewal sale or increase value from Existing Business (5% Commissions)
A2 = New Business from New Customers (7.5% Commissions)
A3 = Reduce Sale from Existing Business (3% Commissions)

Can someone help me with a formula that will return the correct commission
value in cell A4 based on the commission structure above?

Please note that all 3 cells will never be populated at the same time. Only
1 cell A1, A2, A3) will be populated per row.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 205
Default Calculating Commissions

Well if 'never' really means never then how about this:

=SUM((A1*0.05),(A2*0.075),(A3*0.03))

Hope that helps

John

"Real Spice" wrote in message
...
Help with the following.

Example:

A1 = Renewal sale or increase value from Existing Business (5%
Commissions)
A2 = New Business from New Customers (7.5% Commissions)
A3 = Reduce Sale from Existing Business (3% Commissions)

Can someone help me with a formula that will return the correct commission
value in cell A4 based on the commission structure above?

Please note that all 3 cells will never be populated at the same time.
Only
1 cell A1, A2, A3) will be populated per row.








--
Sam



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4,624
Default Calculating Commissions

Oops, delete the *A4



=SUMPRODUCT(A1:A3,{0.05,0.075,0.03})

In article ,
JE McGimpsey wrote:

One way:

=SUMPRODUCT(A1:A3,{0.05,0.075,0.03})*A4

In article ,
Real Spice wrote:

Help with the following.

Example:

A1 = Renewal sale or increase value from Existing Business (5% Commissions)
A2 = New Business from New Customers (7.5% Commissions)
A3 = Reduce Sale from Existing Business (3% Commissions)

Can someone help me with a formula that will return the correct commission
value in cell A4 based on the commission structure above?

Please note that all 3 cells will never be populated at the same time.
Only
1 cell A1, A2, A3) will be populated per row.

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
calculating commissions RC Excel Discussion (Misc queries) 3 July 22nd 09 12:21 AM
commissions by range abryan Excel Worksheet Functions 7 November 26th 05 11:42 PM
calculating commissions for a range of values abryan Excel Worksheet Functions 2 November 26th 05 06:01 PM
Calculating Commissions Macro Richard[_14_] Excel Programming 0 July 29th 03 11:40 PM
Calculating Commissions Macro Steve Smallman Excel Programming 1 July 27th 03 05:16 PM


All times are GMT +1. The time now is 01:25 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"