View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
franciz franciz is offline
external usenet poster
 
Posts: 79
Default Formula Calculation

in A3, the formula need to change to this to return the value in col 3 :
VLOOKUP($A$1,$A$7:$C$13,3,0)

"franciz" wrote:

you may also use the Vlookup formula on both A2 and A3 like :

in A2, place VLOOKUP($A$1,$A$7:$C$13,2,0) and copy down to A3.
this will return the related value in FED and NC for value in Taxable Income
based on your table below.

Note, you may need to format the cell in A2 and A3 to General instaed of
Number.



"wburritt" wrote:

Hi: I have a cell A1 that displays a taxable income number. Based on that
number, I'd like A2 and A3 to display a tax rate for FED and NC based on the
following table...

Taxable Income
Fed NC
20,000 0.111 0.060
30,000 0.124 0.063
40,000 0.131 0.065
50,000 0.134 0.066
60,000 0.142 0.066
70,000 0.148 0.067
80,000 0.161 0.067

Do I have to use a bunch of if, thens, or is there an easier way. Thanks!