Try this:
..........A...........B............C.............D...
1......2%.........0...........=A1..........1000
2......1%.........250......=A2-A1............
3......0.5%......750......=A3-A2............
4......0.25%....1500....=A4-A3............
=SUMPRODUCT(--(D1>B1:B4),(D1-B1:B4),C1:C4)
See this:
http://mcgimpsey.com/excel/variablerate.html
--
Biff
Microsoft Excel MVP
"Evan" <(E-Mail Removed)> wrote in message
news

E43B1FB-6139-43D4-9DB7-(E-Mail Removed)...
>I have a tiered fee schedule and I'm trying to calculate an IF formula to
> capture the different levels. Here are my conditions for an account
> balance
> example:
>
> My Account balance is $1000 (C1)
> A: Bill 2% (A1) for the FIRST $250 (B1)
> B: Bill 1% (A2) for the NEXT $500 (B2)
> C: Bill 0.5% (A3) for the NEXT $750 (B3)
> D: Bill 0.25% (a4) THEREAFTER
>
> Based off my fee schedule, my bill should be $11.25 --
> ((A1*B1)+(B2*A2)+((C1-(B2+B1))*A3)). But this formula wouldn't work if C1
> was $200, $450, $1600, etc.... What's the correct IF formula? Any help
> would be appreciated
>