Why not make a custom function that does this painlessly? Plus if you ever need to use it in more than one workbook, you can easily put it in any other workbook as an add-in. All you'd need is this:
Function Fee(Amount)
Const Tier1 = 0.01
Const Tier2 = 0.0075
Const Tier3 = 0.00625
Const Tier4 = 0.005
Select Case Amount
Case 0 To 15000000: Fee = Amount * Tier1
Case 15000001 To 30000000: Fee = (15000000 * Tier1) _
+ ((Amount - 15000000) * Tier2)
Case 300000001 To 45000000: Fee = (15000000 * Tier1) _
+ (15000000 * Tier2) + ((Amount - 30000000) * Tier3)
Case Is >= 45000001: Fee = (15000000 * Tier1) _
+ (15000000 * Tier2) + (15000000 * Tier3) _
+ ((Amount - 45000000) * Tier4)
End Select
End Function
Just copy and paste that into the module portion of the VBA editor screen. To use the formula simply type in
=fee(*insert cell with the monetary value, or type in the monetary value yourself*) and it'll give you the applicable fees.
So for example, if cell A1 had 100,000,000 and you typed in cell B1 =fee(A1) you'd get 631,250. You could also type in =fee(100000000) and get the same result.
Hope this simplifies things for you. I also have the file attached demonstrating the formula.
Bookmarks