View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default vlookup or if statement

You may need to clarify what you want. Are you looking for the tax rate, or
the tax payable? If the latter, presumably the rate is applicable on the
amount within that band?
If when you say "i have a lot of values for it" you mean that there are a
large number of additional steps beyond the 30% band, then you may be better
with a lookup.

Tax rate: =IF(A1<=10000,0,IF(A1<=90000,20%,IF(A1<100000,30%, "undefined")))
Tax payable:
=IF(A1100000,"undefined",30%*(MIN(10000,MAX(A1-90000,0)))+20%*(MIN(80000,MAX(A1-10000,0))))
--
David Biddulph

"andy" wrote in message
...
hey i really need help with a formula because i don't know which one to
use.
i have this information

0-10000 = O% tax
10000-90000 = 20% tax
90001-100000= 30% tax

and i have a lot of values for it but i dont know how to make it like
simple
to work out as one formula like the IF statement can be used if it only
had
to variables but it has three and i dont know what formula to use.
please help its really important

thank you heaps.