Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Kim
 
Posts: n/a
Default What Formula Should I Use?

First Question:

If one of my sales reps sell
2 seperate newsletters, they get 1%
3 seperate newseltters = 2%
4 seperate newseltters = 3%
5 seperate newseltters = 4%
6 seperate newseltters = 5%
7 seperate newseltters = 6%
8 seperate newseltters = 7%
9 or more seperate newseltters = 8%
It caps out at 8%

Can you please help me with a formula for this?

Second and LAST question :)
If they sell
2 versions = 0.5%
3 versions = 1.0%
4 versions = 1.5%
5 versions = 2.0%
6 versions = 2.5%
7 versions = 3.0%
8 versions = 3.5%
9 versions = 4.0%
Capping out at 4%

I can't tell you what a help this site is and everyone out there taking
their time to help me out!
Thank you, Thank you, Thank you!!!!! You have made my life so much easier
today!
  #2   Report Post  
Posted to microsoft.public.excel.misc
Marcelo
 
Posts: n/a
Default What Formula Should I Use?

Hi Kim,

you can create a table as

Col A Col B
2 1%
3 2%
....
9 8%

and use a vllokup to find the % of bonuses

hth
regards from Brazil
Marcelo

"Kim" escreveu:

First Question:

If one of my sales reps sell
2 seperate newsletters, they get 1%
3 seperate newseltters = 2%
4 seperate newseltters = 3%
5 seperate newseltters = 4%
6 seperate newseltters = 5%
7 seperate newseltters = 6%
8 seperate newseltters = 7%
9 or more seperate newseltters = 8%
It caps out at 8%

Can you please help me with a formula for this?

Second and LAST question :)
If they sell
2 versions = 0.5%
3 versions = 1.0%
4 versions = 1.5%
5 versions = 2.0%
6 versions = 2.5%
7 versions = 3.0%
8 versions = 3.5%
9 versions = 4.0%
Capping out at 4%

I can't tell you what a help this site is and everyone out there taking
their time to help me out!
Thank you, Thank you, Thank you!!!!! You have made my life so much easier
today!

  #3   Report Post  
Posted to microsoft.public.excel.misc
Kim
 
Posts: n/a
Default What Formula Should I Use?

Marcelo - I have no idea what a vllokup is. I'm really, really new to excel.

"Marcelo" wrote:

Hi Kim,

you can create a table as

Col A Col B
2 1%
3 2%
...
9 8%

and use a vllokup to find the % of bonuses

hth
regards from Brazil
Marcelo

"Kim" escreveu:

First Question:

If one of my sales reps sell
2 seperate newsletters, they get 1%
3 seperate newseltters = 2%
4 seperate newseltters = 3%
5 seperate newseltters = 4%
6 seperate newseltters = 5%
7 seperate newseltters = 6%
8 seperate newseltters = 7%
9 or more seperate newseltters = 8%
It caps out at 8%

Can you please help me with a formula for this?

Second and LAST question :)
If they sell
2 versions = 0.5%
3 versions = 1.0%
4 versions = 1.5%
5 versions = 2.0%
6 versions = 2.5%
7 versions = 3.0%
8 versions = 3.5%
9 versions = 4.0%
Capping out at 4%

I can't tell you what a help this site is and everyone out there taking
their time to help me out!
Thank you, Thank you, Thank you!!!!! You have made my life so much easier
today!

  #4   Report Post  
Posted to microsoft.public.excel.misc
Toppers
 
Posts: n/a
Default What Formula Should I Use?

Kim,

First one

=Min(8,A1) where A1 are sales

To allow for sales of 1

=If(A11,Min(8,A1) ,0)


For second

=MIN(4,(A1-1)*0.5)

To allow for sales of 1

=If(A11,MIN(4,(A1-1)*0.5) ,0)

HTH

"Kim" wrote:

First Question:

If one of my sales reps sell
2 seperate newsletters, they get 1%
3 seperate newseltters = 2%
4 seperate newseltters = 3%
5 seperate newseltters = 4%
6 seperate newseltters = 5%
7 seperate newseltters = 6%
8 seperate newseltters = 7%
9 or more seperate newseltters = 8%
It caps out at 8%

Can you please help me with a formula for this?

Second and LAST question :)
If they sell
2 versions = 0.5%
3 versions = 1.0%
4 versions = 1.5%
5 versions = 2.0%
6 versions = 2.5%
7 versions = 3.0%
8 versions = 3.5%
9 versions = 4.0%
Capping out at 4%

I can't tell you what a help this site is and everyone out there taking
their time to help me out!
Thank you, Thank you, Thank you!!!!! You have made my life so much easier
today!

  #5   Report Post  
Posted to microsoft.public.excel.misc
Bearacade
 
Posts: n/a
Default What Formula Should I Use?


First one:

=IF(A1<10,
LOOKUP(A1,{1,2,3,4,5,7,8,9;0.01,0.02,0.03,0.04,0.0 5,0.06,0.07,0.08}),
0.08)

Second one:

=IF(A1<10,
LOOKUP(A1,{1,2,3,4,5,7,8,9;0.005,0.01,0.015,0.02,0 .025,0.03,0.035,0.04}),
0.04)

This is assuming it's not 0 or blank


--
Bearacade


------------------------------------------------------------------------
Bearacade's Profile: http://www.excelforum.com/member.php...o&userid=35016
View this thread: http://www.excelforum.com/showthread...hreadid=555747



  #6   Report Post  
Posted to microsoft.public.excel.misc
Kent Finnell
 
Posts: n/a
Default What Formula Should I Use?

"Kim" wrote in message
...
Marcelo - I have no idea what a vllokup is. I'm really, really new to
excel.


Marcelo made a slight typo. That should be "vlookup" for Vertical Lookup.
Use the formula help for a simple example.


--
Kent Finnell
From the Music City USA

"Marcelo" wrote:

Hi Kim,

you can create a table as

Col A Col B
2 1%
3 2%
...
9 8%

and use a vllokup to find the % of bonuses

hth
regards from Brazil
Marcelo

"Kim" escreveu:

First Question:

If one of my sales reps sell
2 seperate newsletters, they get 1%
3 seperate newseltters = 2%
4 seperate newseltters = 3%
5 seperate newseltters = 4%
6 seperate newseltters = 5%
7 seperate newseltters = 6%
8 seperate newseltters = 7%
9 or more seperate newseltters = 8%
It caps out at 8%

Can you please help me with a formula for this?

Second and LAST question :)
If they sell
2 versions = 0.5%
3 versions = 1.0%
4 versions = 1.5%
5 versions = 2.0%
6 versions = 2.5%
7 versions = 3.0%
8 versions = 3.5%
9 versions = 4.0%
Capping out at 4%

I can't tell you what a help this site is and everyone out there taking
their time to help me out!
Thank you, Thank you, Thank you!!!!! You have made my life so much
easier
today!



  #7   Report Post  
Posted to microsoft.public.excel.misc
Marcelo
 
Posts: n/a
Default What Formula Should I Use?

perfect thanks Kent

"Kent Finnell" escreveu:

"Kim" wrote in message
...
Marcelo - I have no idea what a vllokup is. I'm really, really new to
excel.


Marcelo made a slight typo. That should be "vlookup" for Vertical Lookup.
Use the formula help for a simple example.


--
Kent Finnell
From the Music City USA

"Marcelo" wrote:

Hi Kim,

you can create a table as

Col A Col B
2 1%
3 2%
...
9 8%

and use a vllokup to find the % of bonuses

hth
regards from Brazil
Marcelo

"Kim" escreveu:

First Question:

If one of my sales reps sell
2 seperate newsletters, they get 1%
3 seperate newseltters = 2%
4 seperate newseltters = 3%
5 seperate newseltters = 4%
6 seperate newseltters = 5%
7 seperate newseltters = 6%
8 seperate newseltters = 7%
9 or more seperate newseltters = 8%
It caps out at 8%

Can you please help me with a formula for this?

Second and LAST question :)
If they sell
2 versions = 0.5%
3 versions = 1.0%
4 versions = 1.5%
5 versions = 2.0%
6 versions = 2.5%
7 versions = 3.0%
8 versions = 3.5%
9 versions = 4.0%
Capping out at 4%

I can't tell you what a help this site is and everyone out there taking
their time to help me out!
Thank you, Thank you, Thank you!!!!! You have made my life so much
easier
today!




  #8   Report Post  
Posted to microsoft.public.excel.misc
Toppers
 
Posts: n/a
Default What Formula Should I Use?

Typos:

=Min(8,(A1-1)) *0.01 to give %

=MIN(4,(A1-1)*0.5)*0.01 to give %

Change IF statements accordingly.

"Toppers" wrote:

Kim,

First one

=Min(8,A1) where A1 are sales

To allow for sales of 1

=If(A11,Min(8,A1) ,0)


For second

=MIN(4,(A1-1)*0.5)

To allow for sales of 1

=If(A11,MIN(4,(A1-1)*0.5) ,0)

HTH

"Kim" wrote:

First Question:

If one of my sales reps sell
2 seperate newsletters, they get 1%
3 seperate newseltters = 2%
4 seperate newseltters = 3%
5 seperate newseltters = 4%
6 seperate newseltters = 5%
7 seperate newseltters = 6%
8 seperate newseltters = 7%
9 or more seperate newseltters = 8%
It caps out at 8%

Can you please help me with a formula for this?

Second and LAST question :)
If they sell
2 versions = 0.5%
3 versions = 1.0%
4 versions = 1.5%
5 versions = 2.0%
6 versions = 2.5%
7 versions = 3.0%
8 versions = 3.5%
9 versions = 4.0%
Capping out at 4%

I can't tell you what a help this site is and everyone out there taking
their time to help me out!
Thank you, Thank you, Thank you!!!!! You have made my life so much easier
today!

  #9   Report Post  
Posted to microsoft.public.excel.misc
Kim
 
Posts: n/a
Default TROUBLESHOOTING MY FORMULA

Hi Topper-
The below formulas you provided me with work perfectly unless I put a -0- in
the cell, then it either gives me a negative 1% or 1/2 %. How can I fix this
so when I put a zero in the cell it gives me a 0% rather than a negative 1%?
Thank you very much!
Kim

"Toppers" wrote:

Typos:

=Min(8,(A1-1)) *0.01 to give %

=MIN(4,(A1-1)*0.5)*0.01 to give %

Change IF statements accordingly.

"Toppers" wrote:

Kim,

First one

=Min(8,A1) where A1 are sales

To allow for sales of 1

=If(A11,Min(8,A1) ,0)


For second

=MIN(4,(A1-1)*0.5)

To allow for sales of 1

=If(A11,MIN(4,(A1-1)*0.5) ,0)

HTH

"Kim" wrote:

First Question:

If one of my sales reps sell
2 seperate newsletters, they get 1%
3 seperate newseltters = 2%
4 seperate newseltters = 3%
5 seperate newseltters = 4%
6 seperate newseltters = 5%
7 seperate newseltters = 6%
8 seperate newseltters = 7%
9 or more seperate newseltters = 8%
It caps out at 8%

Can you please help me with a formula for this?

Second and LAST question :)
If they sell
2 versions = 0.5%
3 versions = 1.0%
4 versions = 1.5%
5 versions = 2.0%
6 versions = 2.5%
7 versions = 3.0%
8 versions = 3.5%
9 versions = 4.0%
Capping out at 4%

I can't tell you what a help this site is and everyone out there taking
their time to help me out!
Thank you, Thank you, Thank you!!!!! You have made my life so much easier
today!

  #10   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default TROUBLESHOOTING MY FORMULA

=MIN(8,MAX(0,(A1-1))) *0.01

=MIN(4,(MAX(0,A1-1))*0.5)*0.01

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

"Kim" wrote in message
...
Hi Topper-
The below formulas you provided me with work perfectly unless I put a -0-

in
the cell, then it either gives me a negative 1% or 1/2 %. How can I fix

this
so when I put a zero in the cell it gives me a 0% rather than a negative

1%?
Thank you very much!
Kim

"Toppers" wrote:

Typos:

=Min(8,(A1-1)) *0.01 to give %

=MIN(4,(A1-1)*0.5)*0.01 to give %

Change IF statements accordingly.

"Toppers" wrote:

Kim,

First one

=Min(8,A1) where A1 are sales

To allow for sales of 1

=If(A11,Min(8,A1) ,0)


For second

=MIN(4,(A1-1)*0.5)

To allow for sales of 1

=If(A11,MIN(4,(A1-1)*0.5) ,0)

HTH

"Kim" wrote:

First Question:

If one of my sales reps sell
2 seperate newsletters, they get 1%
3 seperate newseltters = 2%
4 seperate newseltters = 3%
5 seperate newseltters = 4%
6 seperate newseltters = 5%
7 seperate newseltters = 6%
8 seperate newseltters = 7%
9 or more seperate newseltters = 8%
It caps out at 8%

Can you please help me with a formula for this?

Second and LAST question :)
If they sell
2 versions = 0.5%
3 versions = 1.0%
4 versions = 1.5%
5 versions = 2.0%
6 versions = 2.5%
7 versions = 3.0%
8 versions = 3.5%
9 versions = 4.0%
Capping out at 4%

I can't tell you what a help this site is and everyone out there

taking
their time to help me out!
Thank you, Thank you, Thank you!!!!! You have made my life so much

easier
today!



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
Match then lookup Tenacity Excel Worksheet Functions 9 December 3rd 05 05:30 AM
Formula Problem - interrupted by #VALUE! in other cells!? Ted Excel Worksheet Functions 17 November 25th 05 05:18 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 03:28 AM
Creating a check mark box MarthaSue Setting up and Configuration of Excel 18 April 28th 05 12:31 AM
Match / Vlookup within an Array formula Hari Prasadh Excel Discussion (Misc queries) 3 February 3rd 05 04:37 PM


All times are GMT +1. The time now is 03:50 PM.

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

About Us

"It's about Microsoft Excel"