+ Reply to Thread
Results 1 to 3 of 3

Tiered Calculation

Hybrid View

Guest Tiered Calculation 03-06-2006, 11:50 PM
Guest RE: Tiered Calculation 03-07-2006, 12:10 AM
Guest Re: Tiered Calculation 03-07-2006, 12:20 AM
  1. #1
    Derek Borckmann
    Guest

    Tiered Calculation

    Here is the issue. There is a tiered cost associated with hours.

    Any help would be appreciated.

    In column a the first 60 hours cost $100.00 per hour.
    The next 100 cost 75.00 per hour.
    anything after that costs 60.00 per hour.

    (Column b should read = $17,400.00)

    a b
    Hours Charge
    1 225 =sum(?



  2. #2
    Ryan Poth
    Guest

    RE: Tiered Calculation

    Derek,

    Try:
    =MIN(A1,60)*100+(MIN(A1,160)-MIN(A1,60))*75+MAX(A1-160,0)*60

    HTH,
    Ryan

    "Derek Borckmann" wrote:

    > Here is the issue. There is a tiered cost associated with hours.
    >
    > Any help would be appreciated.
    >
    > In column a the first 60 hours cost $100.00 per hour.
    > The next 100 cost 75.00 per hour.
    > anything after that costs 60.00 per hour.
    >
    > (Column b should read = $17,400.00)
    >
    > a b
    > Hours Charge
    > 1 225 =sum(?
    >
    >
    >


  3. #3
    Biff
    Guest

    Re: Tiered Calculation

    Hi!

    Try this:

    =SUMPRODUCT(--(A1>{0;60;160}),(A1-{0;60;160}),{100;-25;-15})

    For more info, see:

    http://mcgimpsey.com/excel/variablerate.html

    Biff

    "Derek Borckmann" <djborckmann@yahoo.com> wrote in message
    news:gn7Pf.14232$iR1.14225@tornado.rdc-kc.rr.com...
    > Here is the issue. There is a tiered cost associated with hours.
    >
    > Any help would be appreciated.
    >
    > In column a the first 60 hours cost $100.00 per hour.
    > The next 100 cost 75.00 per hour.
    > anything after that costs 60.00 per hour.
    >
    > (Column b should read = $17,400.00)
    >
    > a b
    > Hours Charge
    > 1 225 =sum(?
    >
    >




+ 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