Split unit usage in tier columns

Issie_52

New Member
Joined
Jul 22, 2013
Messages
32
Hi there,

Hoping someone can help me.

I need to split usage of units in different columns (without using VBA):

For example-
Total Usage: 29 (B3)
Column C: The first 1 to 12 unit are free
Column D: Units 13-25 are charge 1
Column E: Units 26+ are charge 2

I want to the split the usage automatically into the different columns with a formula.
Is this possible?

Any help would be appreciated. Please note that I am not allowed to use VBA on the system.



A
B
C
D
E
1
<strike></strike>
<strike></strike>Usage
Free
Charge 1
Charge 2
2


1-12
13-25
26+
3
481
29
12
13
4
4
457
7



5
132
13
12
1

<tbody>
</tbody>

Thank you.
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Why is C4 blank?
Shouldnt it be 7 following the same rules as the other two rows?
 
Upvote 0
Try putting these formulas in the indicated cells and then copy them down to the end of your data...

C3: =MIN(12,B3)

D3: =IF(B3>12,MIN(13,B3-12),"")

E3: =IF(B3>25,B3-25,"")
 
Upvote 0
Hi Rick

Made a mistake and it didn't work. Sorted it out.

Thank you so much for your quick reply and solution.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,716
Members
448,985
Latest member
chocbudda

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top