View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
ShaneDevenshire ShaneDevenshire is offline
external usenet poster
 
Posts: 2,344
Default Is this type of formula possible in Excel?

Hi,

And a combination of the previous ideas with some modifications:

In a range, say G1:H6 enter the table:

1 0.00017
50,000,001 0.00013
100,000,001 0.0001
250,000,001 0.00008
500,000,001 0.00007
750,000,000 0.00005

In another cell enter the formula:

=A5*LOOKUP(A5,G1:G6,H1:H6)


--
Thanks,
Shane Devenshire


"KP" wrote:

I am trying to apply a multiplication factor that would vary depending on the
sum of a particular cell. For example let's say the value of cell A5 is the
SUM of A1:A4. Let's say the value is 255,000,000.

my multiplication factor table looks like this:

1 - 50,000,000.........................(0.17)/1000
50,000,001 - 100,000,000..........(0.13)/1000
100,000,001 - 250,000,000.........(0.10)/1000
250,000,001 - 500,000,000.........(0.08)/1000
500,000,001 - 750,000,000.........(0.07)/1000
750,000,000 ++ .......................(0.05)/1000

So depending on the range the cell sum falls into I need the formula to
apply the appropriate multiplication factor and divide by 1000. I'm trying to
avoid manually inputting the (0.XX)/1000 based on the formula identifying
which range the sum falls into and automatically applying the appropriate
multiplication factor. In the example above the formula would be applied to
the A6 cell and identify the A5 sum as falling into the "range" and
automatically apply the corresponding multiplication factor.

Is something like this more advanced than what Excel can handle?

Thanks in advance for any perspective on this.