Tiered Calculation

  • Thread starter Derek Borckmann
  • Start date
D

Derek Borckmann

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(?
 
R

Ryan Poth

Derek,

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

HTH,
Ryan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top