Summing to a point

hardgrafting

New Member
Joined
Feb 6, 2017
Messages
25
Hi,

I have the below data that I want to sum, but only to a certain point:

Number of cats78101112
Cumulative cats7152580
Cap on the number of cats33

<tbody>
</tbody>

I have information on the number of cats in each house, as can be seen it is 7 in one house, 8 in the other house, 11 in another house and 12 in another house. I am adding them cumulatively in the column below, as can be seen from the 7-15-25.

However, there is a cap on the number of cats in the homes. As such, the house with 11 is only allowed to have 8 cats, since adding 8 to 25 makes it 33. Can this be done as a formula? Which will sum until a point and then at the number which exceeds the cumulative cap, will get reduced to the cap?
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Correct, yes, I meant this for illustration.

I basically want a formula, that will make the 11 8 automatically, since this is the cap
 
Upvote 0
Then try

=IF(A2=33,0,MIN(33,SUM($B$1:B1)))

Assuming your table starts in cell A1

Code:
[TABLE="width: 583"]
<colgroup><col width="148" style="width: 111pt;"><col width="87" span="5" style="width: 65pt;"></colgroup><tbody>[TR]
[TD="class: xl63, width: 148"]Number of cats[/TD]
[TD="class: xl63, width: 87, align: right"]7[/TD]
[TD="class: xl63, width: 87, align: right"]8[/TD]
[TD="class: xl63, width: 87, align: right"]10[/TD]
[TD="class: xl63, width: 87, align: right"]11[/TD]
[TD="class: xl63, width: 87, align: right"]12[/TD]
[/TR]
[TR]
[TD="class: xl63"]Cumulative cats[/TD]
[TD="align: right"]7[/TD]
[TD="align: right"]15[/TD]
[TD="align: right"]25[/TD]
[TD="align: right"]33[/TD]
[TD="align: right"]0[/TD]
[/TR]
</tbody>[/TABLE]
 
Upvote 0
or this is better if you have more columns

=IF(MAX($A$2:A2)=33,0,MIN(33,SUM($B$1:B1)))
 
Upvote 0
Hi Gaz chops, thanks for this, think I havent explained myself well.

Number of cats78101112
Cumulative cats71525330
Cap on the number of cats


The cumulative cats should be 36 where it is 33. I would like to restrict the 36 to 33 and going forward, I would like to make the next cumulatives after the 33, always zero

33

<tbody>
</tbody>
 
Upvote 0
To be very clear, what I want to do, is have output instead of 11, this should be 8, which would infer, that the house with 11 cats, can only have 8 cats.

So the final output should become

Number of cats7810812

<tbody>
</tbody>
 
Upvote 0
No idea what you mean! If the cap is 33 where does 36 come in?

show an example with the actual result you expect.
 
Upvote 0
Okay, really sorry, I am not the best excel user, so I will explain for the very beginning again

Number of cats per house: This shows the number of cats, per each household. Total of 5 households, each with 7/8/10/8/12 cats respectively.

Cumulative cats per house: This shows the cumulative cats, summing the number of cats per household

Cats allowed per house: This shows the numbers of cats allowed per house. Note, that the final 2 house are allowed only 8 cats and the final house, is allowed 0 cats. This is because the cap is 33.

What I would like, is a formula, that takes into account the cap and basically using the number of cats per house data and the cap, solves for the "cats allowed per house line".

Hope this makes sense


Number of cats per house78101112
Cumulative cats per house715253648
Cats allowed per house781080
CAP33

<colgroup><col span="9"></colgroup><tbody>
</tbody>
 
Upvote 0
Is this what you want?


Excel 2013/2016
ABCDEF
1Number of cats per house78101112
2Cumulative cats per house715253648
3Cats allowed per house781080
4
5CAP33
Color
Cell Formulas
RangeFormula
B2=SUM($B$1:B$1)
B3=IF(B2>$B$5,MAX($B5-A2,0),B1)
 
Upvote 0

Forum statistics

Threads
1,215,059
Messages
6,122,918
Members
449,094
Latest member
teemeren

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