Straightforward, but not sure which function to use

bmw4life

New Member
Joined
Jun 30, 2018
Messages
6
Hello All,

I'm a fairly light excel user and am looking to do the following with the set of data below:

Beginning Balance BofA: $1,000
Beginning Balance WF: $1,500

AmountType
-2BofA
10Wells Fargo
12BofA
-5Wells Fargo

<tbody>
</tbody>

I'm looking to have a running balance for 2 bank accounts (BofA and Paypal), as I record certain transactions. I was looking to have the column for "Type" to pull the corresponding amount and add or subtract it from the Beginning Balance - in that sense always having a running balance which is accurate based on recorded transactions.

How would I do this in an efficient way and which function would be best suited?

Thanks in advance!
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
sumif:


Excel 2010
ABCD
1
2BofA1000101010
3Wells Fargo150051505
4
5AmountType
6-2BofA
710Wells Fargo
812BofA
9-5Wells Fargo
Sheet4
Cell Formulas
RangeFormula
C2=SUMIF($B$6:$B$9,A2,$A$6:$A$90)
D2=B2+C2


or you could set a pivot table
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,907
Messages
6,122,183
Members
449,071
Latest member
cdnMech

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