Formula Calculation

W

wburritt

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!
 
T

Teethless mama

Assume your data in A1:C8, criteria in D2

In E2: =VLOOKUP($D$2,$A$2:$C$8,COLUMNS($E:F))
copy across to F2
 
M

Max

Assume the reference table is in A6:C13
where B6:C6 houses Fed, NC and
A7:A13 houses the amounts in asc order: 20,000, etc

Amount will be entered in A1
In A2
=IF(A$1="","",IF(A$1<=20000,VLOOKUP(20000,$A$7:$C$13,ROWS($1:1)+1),VLOOKUP(A$1,$A$7:$C$13,ROWS($1:1)+1)))
Copy A2 down to A3
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:20,500 Files:363 Subscribers:64
xdemechanik
 
F

franciz

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.
 
F

franciz

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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top