Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 30
Default If And/Or statement for comm calc criteria

This is to calculate a 2-part commission payment.

A1 Monthly Target = $1,000
A2 Performance % = 168%
A3 Payout up to 100% (100% of target - $1,000)
A4 Payout based of Performance % 100% up to 150% (2% of target for every %
above 100% of plan up to 150% of plan - otherwise, even if performance is
200%, the commission is capped at 150% performance)

I need a formula to calculate A4 - commission 100% up to 150% performance
================================================== =
Results should be
A1 - $1,000 / A2 - 168% / A3 - $1,000 / A4 - $1,000

A5 - $2,000 Total Commission
--
Texas Wannano
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default If And/Or statement for comm calc criteria

A3:
=A1*MIN(A2,1)

A4:
=2*(A21)*MIN(MOD(A2,1),0.5)*A1

--

HTH,

RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===

"Wannano" wrote in message
...
This is to calculate a 2-part commission payment.

A1 Monthly Target = $1,000
A2 Performance % = 168%
A3 Payout up to 100% (100% of target - $1,000)
A4 Payout based of Performance % 100% up to 150% (2% of target for every %
above 100% of plan up to 150% of plan - otherwise, even if performance is
200%, the commission is capped at 150% performance)

I need a formula to calculate A4 - commission 100% up to 150% performance
================================================== =
Results should be
A1 - $1,000 / A2 - 168% / A3 - $1,000 / A4 - $1,000

A5 - $2,000 Total Commission
--
Texas Wannano


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default If And/Or statement for comm calc criteria

1 less function call for A4:

=2*(A21)*MIN(A2-1,0.5)*A1
--

Regards,

RD
-----------------------------------------------------------------------------------------------
Please keep all correspondence within the Group, so all may benefit !
-----------------------------------------------------------------------------------------------


"RagDyeR" wrote in message
...
A3:
=A1*MIN(A2,1)

A4:
=2*(A21)*MIN(MOD(A2,1),0.5)*A1

--

HTH,

RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===

"Wannano" wrote in message
...
This is to calculate a 2-part commission payment.

A1 Monthly Target = $1,000
A2 Performance % = 168%
A3 Payout up to 100% (100% of target - $1,000)
A4 Payout based of Performance % 100% up to 150% (2% of target for every %
above 100% of plan up to 150% of plan - otherwise, even if performance is
200%, the commission is capped at 150% performance)

I need a formula to calculate A4 - commission 100% up to 150% performance
================================================== =
Results should be
A1 - $1,000 / A2 - 168% / A3 - $1,000 / A4 - $1,000

A5 - $2,000 Total Commission
--
Texas Wannano



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 30
Default If And/Or statement for comm calc criteria

That worked. Thanks!
--
Texas Wannano


"RagDyeR" wrote:

1 less function call for A4:

=2*(A21)*MIN(A2-1,0.5)*A1
--

Regards,

RD
-----------------------------------------------------------------------------------------------
Please keep all correspondence within the Group, so all may benefit !
-----------------------------------------------------------------------------------------------


"RagDyeR" wrote in message
...
A3:
=A1*MIN(A2,1)

A4:
=2*(A21)*MIN(MOD(A2,1),0.5)*A1

--

HTH,

RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===

"Wannano" wrote in message
...
This is to calculate a 2-part commission payment.

A1 Monthly Target = $1,000
A2 Performance % = 168%
A3 Payout up to 100% (100% of target - $1,000)
A4 Payout based of Performance % 100% up to 150% (2% of target for every %
above 100% of plan up to 150% of plan - otherwise, even if performance is
200%, the commission is capped at 150% performance)

I need a formula to calculate A4 - commission 100% up to 150% performance
================================================== =
Results should be
A1 - $1,000 / A2 - 168% / A3 - $1,000 / A4 - $1,000

A5 - $2,000 Total Commission
--
Texas Wannano




  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default If And/Or statement for comm calc criteria

You're welcome and appreciate the feed-back.
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Wannano" wrote in message
...
That worked. Thanks!
--
Texas Wannano


"RagDyeR" wrote:

1 less function call for A4:

=2*(A21)*MIN(A2-1,0.5)*A1
--

Regards,

RD


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

---------------------
Please keep all correspondence within the Group, so all may benefit !


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

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


"RagDyeR" wrote in message
...
A3:
=A1*MIN(A2,1)

A4:
=2*(A21)*MIN(MOD(A2,1),0.5)*A1

--

HTH,

RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===

"Wannano" wrote in message
...
This is to calculate a 2-part commission payment.

A1 Monthly Target = $1,000
A2 Performance % = 168%
A3 Payout up to 100% (100% of target - $1,000)
A4 Payout based of Performance % 100% up to 150% (2% of target for

every %
above 100% of plan up to 150% of plan - otherwise, even if performance

is
200%, the commission is capped at 150% performance)

I need a formula to calculate A4 - commission 100% up to 150%

performance
================================================== =
Results should be
A1 - $1,000 / A2 - 168% / A3 - $1,000 / A4 - $1,000

A5 - $2,000 Total Commission
--
Texas Wannano





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
my ? is this problem=E11-backword commaBikes Madeupside down comm. stsfylover11 Excel Worksheet Functions 2 August 7th 06 08:57 AM
auto calc on, but have to edit (f2) cells to force re-calc..help! Curt Excel Worksheet Functions 3 February 13th 06 06:05 PM
I have pop-up post-it notes on my excel sheets!! they are not comm Rochelle B Excel Discussion (Misc queries) 2 November 13th 05 02:58 AM
How do I use a "check(ed) box" as a criteria in an "=if" statement Bill Bromback Excel Worksheet Functions 1 August 19th 05 05:28 PM
If Statement Criteria Brent E Excel Worksheet Functions 2 May 12th 05 12:13 AM


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