+ Reply to Thread
Results 1 to 25 of 25

Calculation time and charge rates

  1. #1
    Registered User
    Join Date
    10-07-2007
    Posts
    88

    Calculation time and charge rates

    I am trying to figure out a formula to figure out how much to charge for hrs of a rental. There is an automatic $1000 charge regardless of time used. the rate chart is as follows:

    $1000 + hourly charge = total

    =<50 hrs= $15/hr
    >50hrs but <100hrs= $6.50/hr
    >100hrs=$4.10/hr

    ex: so is A1= 200hrs then i want B1 to equal $1820.($1000 + (200 x 4.1))=1820.

    I have an idea on how to write the formula, but i am having a little bit of trouble with it.

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    See if this works

    =LOOKUP(A1,{1,51,100},{15,6.5,4.1})*A1+1000
    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

  3. #3
    Registered User
    Join Date
    10-07-2007
    Posts
    88
    thank you so much!!!!!!

  4. #4
    Registered User
    Join Date
    10-07-2007
    Posts
    88
    ok i misunderstood what i was being asked to do. there is a change in the charging. okay if they work 200 hrs, they will be charged $2485. here is the breakdown:
    $1000
    50hrs @ $15/hr
    50hrs @ $6.50/hr
    100hrs @ $4.10/hr

    so how can i adjust the formula to use this method?

    .15hrs to 50hrs= $15/hr
    50.15hrs to 100hrs= $6.50/hr
    100.15+ = $4.10/hr

  5. #5
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    That's an odd schedule:

    50 hours costs $1750.00
    51 hours costs $1331.50
    99 hours costs $1643.50
    100 hours costs $1410.00

    Strong incentive to sit around for an extra hour ...

    Should the changed rates not apply to the incremental time, i.e.,

    =1000 + SUMPRODUCT( (A2 > {0,50,100}) * (A2 - {0,50,100}) * {15,-8.5,-2.4})

    Compared:

    Please Login or Register  to view this content.

  6. #6
    Registered User
    Join Date
    10-07-2007
    Posts
    88
    for some reason that doesn't seem right.
    if they rent it for 200 hrs they pay $1000 just to have it. then they pay $750 for the first 50hrs ($15*50). then they pay $325 for the next 50 hours ($6.50 *50). then they pay $410 for the remaining hundred hours ($4.10 * 100). it is like a 3 level rate structure.

    1000+750+325+410= 2485
    i am not really good at explaining things, sorry!!
    Last edited by concretetsunami; 10-08-2007 at 01:08 PM.

  7. #7
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    1000+750+325+410= 2485
    That's exactly what the formula I suggested returns:

    =1000 + SUMPRODUCT( (A2 > {0,50,100}) * (A2 - {0,50,100}) * {15,-8.5,-2.4})

  8. #8
    Registered User
    Join Date
    10-07-2007
    Posts
    88
    sorry!! the example they gave me is different. i think they are wrong. let me talk to them again to see exactly what the heck they are talking about.

  9. #9
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    BTW, there cannot be 'null spots' in the data, e.g., <= 50 hours pays one rate, >= 50.15 hours pays another, because there's no definition of what happens in between.

    The hours could be rounded to the nearest 15 minutes, or rounded up to the next 15 minutes. Rounding to 0.15 hours (9 minutes) doesn't make much sense.

  10. #10
    Registered User
    Join Date
    10-07-2007
    Posts
    88
    ok here is the lastest and greatest oh what this messed up rate system is suppose to be:

    $1000 + hourly charge
    hrs: charge:
    0-50 free
    50.01-100 $15/hr
    100.01-200 $6.5/hr
    200.01+ $4.1/hr


    ex: customer 1 has rental for 502.9hrs
    $1000 min charge
    $ 0 first 50hrs (hr 0-50)
    $ 750 2nd 50hrs (hr 50.01-100)
    $ 650 1st 100hrs (hr 100.01-200)
    $1241.89 for 302.9hrs (hr 200.01-502.9)
    $3641.89 Total

    hopefully this helps.

  11. #11
    Registered User
    Join Date
    10-07-2007
    Posts
    88
    sorry about the .15 i meant .25 but it doesn't matter.

  12. #12
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    =1000 + SUMPRODUCT( (A2 > {0,50,100,200}) * (A2 - {0,50,100,200}) * {0,15,-8.5,-2.4})
    Please Login or Register  to view this content.

  13. #13
    Registered User
    Join Date
    10-07-2007
    Posts
    88
    thanks you so much!!! that seems to be it. i will just have to figure out how to change it if any of the time charges change or the rate changes. thanks again.

  14. #14
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    You're welcome.

    The first two literal arrays are identical and contain the breakpoints:

    {0,50,100,200}

    The last one contains the rate differences from tier to tier:

    {0,15,-8.5,-2.4}

    0.00 = rate for hours from 0 to 50
    15.00 = the increase for the second tier
    -8.50 = 6.50 - 15.00, the decrease for the third tier
    -2.40 = 4.10 - 6.50, the decrease for the last tier
    Last edited by shg; 10-08-2007 at 02:01 PM.

  15. #15
    Registered User
    Join Date
    10-07-2007
    Posts
    88
    that is awesome! thanks again!!!!

  16. #16
    Registered User
    Join Date
    10-07-2007
    Posts
    88
    okay I am an idiot. if i wanted to take off the first 50 hrs for free and charge $20/hr for them, which array would i change? i suck at this.

  17. #17
    Registered User
    Join Date
    10-07-2007
    Posts
    88
    i think it would be this

    =1000 + SUMPRODUCT( (A2 > {0,50,100,200}) * (A2 - {0,50,100,200}) * {20,-5,-8.5,-2.4})

    right?

  18. #18
    Registered User
    Join Date
    10-07-2007
    Posts
    88
    can i change a fix number (20,-5,-8.5,-2.4) to a value entered into a certain cell (g4,g5,g6, g7)? that way i can just change the value in the cell and not have to change the formula?

  19. #19
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    Create two named ranges, Breakpoints and RateDiffs (they must be the same size), and change the formula to

    =1000 + SUMPRODUCT( (A2 > Breakpoints) * (A2 - Breakpoints) * RateDiffs)

  20. #20
    Registered User
    Join Date
    10-07-2007
    Posts
    88
    ???? again i am an idiot. are you saying to make 2 columns and name each column?

  21. #21
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    In some column, put this in four cells:

    0
    50
    100
    200

    Select those four cells, and in the Names box (left of the fomula bar), type Breakpoints.

    Someplace else, enter

    20
    -5
    -8.5
    -2.4

    Select those four cells, and in the Names box (left of the fomula bar), type RateDiffs.

  22. #22
    Registered User
    Join Date
    10-07-2007
    Posts
    88
    ok that works, but the question that is posed to me is can you just enter 20, 15, 6.5, 4.1 in the cell and it will use that rate and then you change it to 40, 20, 8,5 and it use that rate? i know you are probably getting tired of this, but i am trying to help out a friend. the main reason that he needs to be able to just punch in the # and not put in the first # and then do the differences, is that others may use this and mess up the formula if he is not there to explain it.

  23. #23
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    See attached.
    Attached Files Attached Files

  24. #24
    Registered User
    Join Date
    10-07-2007
    Posts
    88

    Smile

    thanks!!!!!

  25. #25
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    You're welcome

+ 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