Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
RaY RaY is offline
external usenet poster
 
Posts: 164
Default Multiple if senerio

Hello,

I am tried to work out a compensation calculator with accelerators and am
having issues.

100% of quota is $1,000

Range is:
<49% (0%)
50%-69% (50%)
70%-89% (70%)
90%-109% (100%)
110%-129% (130%)
130%-149% (140%)
150%< (160%)

So if the result is 55% of quota is reached then take (1000*55%) then
multiply that by the decelerator of 50%; but if 112% is reached then take
(100*112%) then multiply that be the accelerator of 130%.

All of this needs to be in one cell.

This is what I have so far, but it isnt working

=IF(I16<49%,((B28*I16)*H28),IF(69%I1650%,((B29*I 16)*H29),IF(70%<I16<89%,((B30*I16)*H30),IF(90%<I16 <109%,((B31*I16)*H31),))))

Thank you,

Ray

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default Multiple if senerio

=A1*1000*LOOKUP(A1,{0,0.5,0.7,0.9,1.1,1.3,1.5},{0, 0.5,0.7,1,1.3,1.4,1.6})

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Ray" wrote in message
...
Hello,

I am tried to work out a compensation calculator with accelerators and am
having issues.

100% of quota is $1,000

Range is:
<49% (0%)
50%-69% (50%)
70%-89% (70%)
90%-109% (100%)
110%-129% (130%)
130%-149% (140%)
150%< (160%)

So if the result is 55% of quota is reached then take (1000*55%) then
multiply that by the decelerator of 50%; but if 112% is reached then take
(100*112%) then multiply that be the accelerator of 130%.

All of this needs to be in one cell.

This is what I have so far, but it isn't working


=IF(I16<49%,((B28*I16)*H28),IF(69%I1650%,((B29*I 16)*H29),IF(70%<I16<89%,((
B30*I16)*H30),IF(90%<I16<109%,((B31*I16)*H31),))))

Thank you,

Ray



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,646
Default Multiple if senerio

Reformat your table like this
A B C
1 Range is: 1000 55%
2 0% 275
3 50% 50%
4 70% 70%
5 90% 100%
6 110% 130%
7 130% 140%
8 150% 160%

Formula in C2 gives you the result:
=$B$1*$C$1*IF(ISERROR(VLOOKUP($C$1,$A$2:$B$8,2)),0 ,VLOOKUP($C$1,$A$2:$B$8,2))

Regards,
Stefi

€˛Ray€¯ ezt Ć*rta:

Hello,

I am tried to work out a compensation calculator with accelerators and am
having issues.

100% of quota is $1,000

Range is:
<49% (0%)
50%-69% (50%)
70%-89% (70%)
90%-109% (100%)
110%-129% (130%)
130%-149% (140%)
150%< (160%)

So if the result is 55% of quota is reached then take (1000*55%) then
multiply that by the decelerator of 50%; but if 112% is reached then take
(100*112%) then multiply that be the accelerator of 130%.

All of this needs to be in one cell.

This is what I have so far, but it isnt working

=IF(I16<49%,((B28*I16)*H28),IF(69%I1650%,((B29*I 16)*H29),IF(70%<I16<89%,((B30*I16)*H30),IF(90%<I16 <109%,((B31*I16)*H31),))))

Thank you,

Ray

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
RaY RaY is offline
external usenet poster
 
Posts: 164
Default Multiple if senerio

So far both these two examples haven't helped. Is theremanything else that
can be done?

"Ray" wrote:

Hello,

I am tried to work out a compensation calculator with accelerators and am
having issues.

100% of quota is $1,000

Range is:
<49% (0%)
50%-69% (50%)
70%-89% (70%)
90%-109% (100%)
110%-129% (130%)
130%-149% (140%)
150%< (160%)

So if the result is 55% of quota is reached then take (1000*55%) then
multiply that by the decelerator of 50%; but if 112% is reached then take
(100*112%) then multiply that be the accelerator of 130%.

All of this needs to be in one cell.

This is what I have so far, but it isnt working

=IF(I16<49%,((B28*I16)*H28),IF(69%I1650%,((B29*I 16)*H29),IF(70%<I16<89%,((B30*I16)*H30),IF(90%<I16 <109%,((B31*I16)*H31),))))

Thank you,

Ray

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 117
Default Multiple if senerio

try this amigo....
place the blank quota in cell A1 : e.g. $1000.

PLACE THE ACCELERATOR FORMULA AS...ONE CELL AS U WISH....

=if(A1=150%,160%,IF(A1=130%,140%,IF(A1=110%,130 %,IF(A1=90%,100%,IF(A1=70%,70%,IF(A1=50%,50%,0% ))))))

REPLACE THE VALUES WITH CELL REFERENCES....


--
"Bright minds are blessed to those who share them.."-rsb.


"Ray" wrote:

Hello,

I am tried to work out a compensation calculator with accelerators and am
having issues.

100% of quota is $1,000

Range is:
<49% (0%)
50%-69% (50%)
70%-89% (70%)
90%-109% (100%)
110%-129% (130%)
130%-149% (140%)
150%< (160%)

So if the result is 55% of quota is reached then take (1000*55%) then
multiply that by the decelerator of 50%; but if 112% is reached then take
(100*112%) then multiply that be the accelerator of 130%.

All of this needs to be in one cell.

This is what I have so far, but it isnt working

=IF(I16<49%,((B28*I16)*H28),IF(69%I1650%,((B29*I 16)*H29),IF(70%<I16<89%,((B30*I16)*H30),IF(90%<I16 <109%,((B31*I16)*H31),))))

Thank you,

Ray



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
RaY RaY is offline
external usenet poster
 
Posts: 164
Default Multiple if senerio

IT WORKED!!!! Still don't see why but it does!!!!

THANK YOU ROMELSB!!!

"romelsb" wrote:

try this amigo....
place the blank quota in cell A1 : e.g. $1000.

PLACE THE ACCELERATOR FORMULA AS...ONE CELL AS U WISH....

=if(A1=150%,160%,IF(A1=130%,140%,IF(A1=110%,130 %,IF(A1=90%,100%,IF(A1=70%,70%,IF(A1=50%,50%,0% ))))))

REPLACE THE VALUES WITH CELL REFERENCES....


--
"Bright minds are blessed to those who share them.."-rsb.


"Ray" wrote:

Hello,

I am tried to work out a compensation calculator with accelerators and am
having issues.

100% of quota is $1,000

Range is:
<49% (0%)
50%-69% (50%)
70%-89% (70%)
90%-109% (100%)
110%-129% (130%)
130%-149% (140%)
150%< (160%)

So if the result is 55% of quota is reached then take (1000*55%) then
multiply that by the decelerator of 50%; but if 112% is reached then take
(100*112%) then multiply that be the accelerator of 130%.

All of this needs to be in one cell.

This is what I have so far, but it isnt working

=IF(I16<49%,((B28*I16)*H28),IF(69%I1650%,((B29*I 16)*H29),IF(70%<I16<89%,((B30*I16)*H30),IF(90%<I16 <109%,((B31*I16)*H31),))))

Thank you,

Ray

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 117
Default Multiple if senerio

til next thread...thanks for trying....more power....
--
"Bright minds are blessed to those who share them.."-rsb.


"Ray" wrote:

IT WORKED!!!! Still don't see why but it does!!!!

THANK YOU ROMELSB!!!

"romelsb" wrote:

try this amigo....
place the blank quota in cell A1 : e.g. $1000.

PLACE THE ACCELERATOR FORMULA AS...ONE CELL AS U WISH....

=if(A1=150%,160%,IF(A1=130%,140%,IF(A1=110%,130 %,IF(A1=90%,100%,IF(A1=70%,70%,IF(A1=50%,50%,0% ))))))

REPLACE THE VALUES WITH CELL REFERENCES....


--
"Bright minds are blessed to those who share them.."-rsb.


"Ray" wrote:

Hello,

I am tried to work out a compensation calculator with accelerators and am
having issues.

100% of quota is $1,000

Range is:
<49% (0%)
50%-69% (50%)
70%-89% (70%)
90%-109% (100%)
110%-129% (130%)
130%-149% (140%)
150%< (160%)

So if the result is 55% of quota is reached then take (1000*55%) then
multiply that by the decelerator of 50%; but if 112% is reached then take
(100*112%) then multiply that be the accelerator of 130%.

All of this needs to be in one cell.

This is what I have so far, but it isnt working

=IF(I16<49%,((B28*I16)*H28),IF(69%I1650%,((B29*I 16)*H29),IF(70%<I16<89%,((B30*I16)*H30),IF(90%<I16 <109%,((B31*I16)*H31),))))

Thank you,

Ray

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
Display multiple lines of text within a cell from multiple column. Zeeshan Zaheer Excel Worksheet Functions 3 August 23rd 06 10:08 AM
work with multiple workbooks on separate monitor for 2003 edition mathura Excel Worksheet Functions 1 July 18th 06 05:58 PM
Number of unique attributes that multiple people have rkhuntjr Excel Discussion (Misc queries) 4 July 26th 05 04:15 AM
How do i auto create multiple files from 1 with multiple sheets Kathy Excel Worksheet Functions 0 July 26th 05 01:23 AM
Adding multiple worksheets Craig Excel Worksheet Functions 1 July 6th 05 07:21 PM


All times are GMT +1. The time now is 01:38 AM.

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"