Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() 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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
"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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Match then lookup | Excel Worksheet Functions | |||
Formula Problem - interrupted by #VALUE! in other cells!? | Excel Worksheet Functions | |||
Formula checking multiple worksheets | Excel Worksheet Functions | |||
Creating a check mark box | Setting up and Configuration of Excel | |||
Match / Vlookup within an Array formula | Excel Discussion (Misc queries) |