View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Formula Calculation

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