+ Reply to Thread
Results 1 to 17 of 17

calculate fees from table

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    01-08-2008
    Posts
    137

    calculate fees from table

    I am trying to automate something I've been doing manually. Let me explain.

    1.) I am givien information about fees associated with a mutual fund product. A sample is reproduced in F4:F8.
    2.) Next, this information is entered into the table. See A4:D12.
    3.) Finally, from this table, I must calculate the fees associated with various account sizes.
    4.) I did this manually in cells G15:G16 for 2 different account sizes. You can view my formulas.

    Can something like this be automated? If so, can anyone help me get started? I don't know what code structures to use.
    Attached Files Attached Files

  2. #2
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    I would think that using formulas would be the way to go.
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  3. #3
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    Here's how I would approach it
    Attached Files Attached Files

  4. #4
    Forum Contributor
    Join Date
    01-08-2008
    Posts
    137

    How to make it generic?

    I like your approach where you are trying to calculate weights. I need to make this thing generic. I changed the example. I could get the weight of the first one correct. But the other ones I am still working on.
    Attached Files Attached Files

  5. #5
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    Try this in F23

    =(IF($F$21>=$B$5,$B$5*$D$5,$F$21*$D$5))

    In F24

    =IF($F$21-SUM($B$5:$B$6)<=$B$6,($F$21-$B$5)*$D$6,$B$6*$D$6)

    And so on

  6. #6
    Forum Contributor
    Join Date
    04-30-2008
    Posts
    105
    *Double Post...please delete*
    Last edited by fecurtis; 05-29-2008 at 05:16 PM.

  7. #7
    Forum Contributor
    Join Date
    04-30-2008
    Posts
    105
    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.
    Attached Files Attached Files

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1