formula to incrementally subtract a value form cells in column from bottom up

jetpack

Board Regular
Joined
Nov 4, 2010
Messages
81
have sheets with 100k+ rows of data. values in some cells are calculated values. I need to incrementally subtract a value from an entire column, bottom up.

example data

ABCD
1370192421919218542
2461188721882218222
3258184111836117811
4-9601815318103
5-581911319063
6-1201917119121
7-721929119241
8-391936319313
951940219352
104071939719347
11-7261899018940
121081971619666
131161960819558
141331949219442
1519359
50

<colgroup><col><col span="2"><col><col></colgroup><tbody>
</tbody>
in this example, in column C there are 14 iterations of subtracting 50 from each cell in column B, top down

but the value in C1 is =B1-C16(50).

C1 should = B1- (14x50)700=18542, as shown in D1.

each cell in column C should = the value of the prior row in column B, -50, as shown in 1st 3 rows of column D.

if xl allowed bottom up dragging and calculating, it would be simple, tho xtremely inefficient and prone to error. probably why it can't be done that way?

appreciate any assistance, and thanks for looking in on the post.
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
How about
=B1-ROWS(B2:B$15)*C$16
 
Upvote 0
right as rain it is, mate. thanx so much, really appreciate your willingness to help. cheers!
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,805
Messages
6,121,665
Members
449,045
Latest member
Marcus05

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