Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
We have a client that pays 12,500.00 for monthly support. If they are over
105 hours in the month they pay an additional $125.00 an hour. They still pay the 12,500 even if they are under the 105 hours. a b Hours cost 1 120 =sum(? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Goofy
Try this: =IF(A1<=105,12500,12500+(A1-105)*125) HTH Michael "Goofy" wrote: We have a client that pays 12,500.00 for monthly support. If they are over 105 hours in the month they pay an additional $125.00 an hour. They still pay the 12,500 even if they are under the 105 hours. a b Hours cost 1 120 =sum(? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This might help, assuming your hours are in A1, paste this formula into B1:
=IF(A1105,12500+((A1-105)*125),12500) -- Regards, MarkN "Goofy" wrote: We have a client that pays 12,500.00 for monthly support. If they are over 105 hours in the month they pay an additional $125.00 an hour. They still pay the 12,500 even if they are under the 105 hours. a b Hours cost 1 120 =sum(? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=12500+125*(A1105)*(A1-105) -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "Goofy" wrote in message ... We have a client that pays 12,500.00 for monthly support. If they are over 105 hours in the month they pay an additional $125.00 an hour. They still pay the 12,500 even if they are under the 105 hours. a b Hours cost 1 120 =sum(? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Hints And Tips For New Posters In The Excel Newsgroups | Excel Worksheet Functions | |||
Question about financial calculation PMT | Excel Worksheet Functions | |||
How do I use a check box to accept a calculation | Excel Discussion (Misc queries) | |||
Calculation question | Excel Discussion (Misc queries) | |||
Help, Multiple conditional calculation | New Users to Excel |