View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Andmor Andmor is offline
external usenet poster
 
Posts: 25
Default if/and...not quite sure

I think this is on the right track, the values that come out at the end are
simply too high. Here are the figures I am working with.

first $37,106 20.05%
over $37,106 up to $40,970 24.15%
over $40,970 up to $65,345 31.15%
over $65,345 up to $74,214 32.98%
over $74,214 up to $76,986 35.39%
over $76,986 up to $81,941 39.41%
over $81,941 up to $127,021 43.41%
over $127,021 46.41%

--
A.


"Lars-Åke Aspelin" wrote:

On Tue, 26 Jan 2010 14:34:05 -0800, Andmor
wrote:

In cell D5 I will be entering in a figure, in cell G5 I need to multiply it
by a percentage, the percentage changes depending on the value of cell D5. I
have 8 ranges to accomadate the 1st one being a less than and the last one
being a more than.

Is this enough information to get some assistance?


Try this formula in cell G5:

=D5*VLOOKUP(D5,{-99999,1;10,2;20,3;30,4;40,5;50,6;60,7;70,8},2)/100

-99999 should just be a number less than then smallest possible value
in D5.

10,20,30,40,50,60,and 70 are the limit for the ranges.
Change them to suit your needs.

1,2,3,4,5,6,7, and 8 are the respective percentages.
Change them to suit your needs.

Example: If D5 is 34 the percentage is 4 and the result in cell G5
will be 1.36 (which is 4% of 34).

Hope this helps / Lars-Åke


.