how to create a running balance?

Elliott

Board Regular
Joined
Aug 8, 2005
Messages
73
Hi,

This is probably really simple, but how do I create a running balance? For example, if I have a column A of numbers rounded to the second decimal place, and I want to create column B that represents a running balance as:

A B
3 3
5 8
10.68 18.68
-5 13.68

Many thanks,

Elliott
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
To avoid Balances appearing all the way down after dragging try this small addition

=IF(ISBLANK(A2),"",B1+A2)

Pedro
 
Upvote 0
I'm not 100% on what you're trying to average, Is it the average of the previous running average (B2) and the new number (A3)?

In that case it would be =average(A3,B2). You can also add in Pedro's ISBLANK suggestion

Otherwise, to get the average for coluimn A: In cell B1:

=average($A$1:A1)

and drag down
 
Upvote 0
Book2
ABCD
1AB
22=AVERAGE(A$2:A2)
34=AVERAGE(A$2:A3)
49=AVERAGE(A$2:A4)
512=AVERAGE(A$2:A5)
Sheet1
 
Upvote 0

Forum statistics

Threads
1,215,034
Messages
6,122,782
Members
449,095
Latest member
m_smith_solihull

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