Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am trying to find an easy way to to calculate my Electric bill, my
problem is that there are three tiers of pricing. Example the 1st 500 kwh are billed at 10 cents, 501 - 1000 kwh are billed at 8 cents, and then anything over 1000 is billed at 6 cents. I have my total usage in A2 but would like to break down the total cast by the three tiers, in B2,C2 and D2. Any suggestions??? Thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(A2<501,B2,IF(A2<1001,C2,D2))
" wrote: I am trying to find an easy way to to calculate my Electric bill, my problem is that there are three tiers of pricing. Example the 1st 500 kwh are billed at 10 cents, 501 - 1000 kwh are billed at 8 cents, and then anything over 1000 is billed at 6 cents. I have my total usage in A2 but would like to break down the total cast by the three tiers, in B2,C2 and D2. Any suggestions??? Thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=MIN(A1,500)*0.1+MIN(MAX(0,A1-500),500)*0.08+MAX(0,A1-1000)*0.06
-- --- HTH Bob (change the xxxx to gmail if mailing direct) wrote in message oups.com... I am trying to find an easy way to to calculate my Electric bill, my problem is that there are three tiers of pricing. Example the 1st 500 kwh are billed at 10 cents, 501 - 1000 kwh are billed at 8 cents, and then anything over 1000 is billed at 6 cents. I have my total usage in A2 but would like to break down the total cast by the three tiers, in B2,C2 and D2. Any suggestions??? Thanks |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Bob Phillips wrote: =MIN(A1,500)*0.1+MIN(MAX(0,A1-500),500)*0.08+MAX(0,A1-1000)*0.06 -- --- HTH Bob (change the xxxx to gmail if mailing direct) wrote in message oups.com... I am trying to find an easy way to to calculate my Electric bill, my problem is that there are three tiers of pricing. Example the 1st 500 kwh are billed at 10 cents, 501 - 1000 kwh are billed at 8 cents, and then anything over 1000 is billed at 6 cents. I have my total usage in A2 but would like to break down the total cast by the three tiers, in B2,C2 and D2. Any suggestions??? Thanks Thank you both so much, They both worked just fine and Bob you gave me the ability to change the numbers if the rates change. Thanks again |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Reusing formula | Excel Discussion (Misc queries) | |||
Dynamic Range with unused formula messing up x axis on dynamic graph | Charts and Charting in Excel | |||
Match then lookup | Excel Worksheet Functions | |||
Formula Problem - interrupted by #VALUE! in other cells!? | Excel Worksheet Functions | |||
Formula checking multiple worksheets | Excel Worksheet Functions |