Credit Debit running balance with blank rows

Eskonn

New Member
Joined
Mar 28, 2018
Messages
26
Office Version
  1. 365
Platform
  1. Windows
I am looking for a formula to keep a running balance that accounts for every other row being blank.
The Balance starting cell is H3
The starting row for the credits and debits is ROW 5
I would like to keep the running balance on the even ROWS with the first cell being ROW H6 and then every other ROW H8, H10, H12 etc.
In the example below Check Amount (Column E), Deposit (Column G), Balance (Column H)



CHECK NO.DATEDESCRIPTION OF TRANSACTIONREC. NO.CHECK AMOUNT (-) DEPOSIT (+)BALANCE
(H3)$1,849.53
3/12/2018 (E5)$25.98
(H6)
(E7)$52.00
(H8)
(G9)$30.00
(H10)
(E11)$49.00
(H12)
(G13)$18.00
(H14)

<colgroup><col><col><col><col><col><col><col><col></colgroup><tbody>
</tbody>
 
I tried this as well but I have not been able to get it to work. When I use this formula the cell is blank. I am not getting an error in the cell just no data. Thanks
You may not be entering the formula at the correct row, you need to enter the formula at your First Debit/Credit row, in my sample, it's row H5, and obviously, you'll need to adjust the SUM ranges, do Not change the A5 cell reference in the IF test, as your OP stated, your debits/credits are on ODD rows, and you want the running Balance on Even rows. If you've reversed this (i.e., Debits and Credits on Even rows, and Balances on Odd rows), then change the A5 to A6 in the IF test of the formula.
 
Last edited:
Upvote 0

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
You may not be entering the formula at the correct row, you need to enter the formula at your First Debit/Credit row, in my sample, it's row H5, and obviously, you'll need to adjust the SUM ranges, do Not change the A5 cell reference in the IF test, as your OP stated, your debits/credits are on ODD rows, and you want the running Balance on Even rows. If you've reversed this (i.e., Debits and Credits on Even rows, and Balances on Odd rows), then change the A5 to A6 in the IF test of the formula.

I did get it to work as well. Here is what it ended up being.
=IF(ISODD(ROW(A4)),"",H$3-SUM(E$5:E5)+SUM(G$5:G5))

This formula does have the balance in all the rows down the sheet. But it does work properly as credits and debits are added.
Thanks for your time
 
Upvote 0
Peter -
Thanks for the suggestion. I tried this and I am getting and error #VALUE !
Sounds like you might have null strings (from formulas?) or space characters in columns E &/or G. You could try this modification

Excel Workbook
EFGH
1CHECK AMOUNT (-)DEPOSIT (+)BALANCE
2
3$1,849.53
4
5$25.98
6$1,823.55
7$52.00
8$1,771.55
9$30.00
10$1,801.55
11$49.00
12$1,752.55
13$18.00
14$1,770.55
15
16
Balance
 
Last edited:
Upvote 0
Sounds like you might have null strings (from formulas?) or space characters in columns E &/or G. You could try this modification

Balance

EFGH
1CHECK AMOUNT (-) DEPOSIT (+)BALANCE
2
3 $1,849.53
4
5$25.98
6 $1,823.55
7$52.00
8 $1,771.55
9 $30.00
10 $1,801.55
11$49.00
12 $1,752.55
13 $18.00
14 $1,770.55
15
16

<colgroup><col style="font-weight:bold; width:30px; "><col style="width:142px;"><col style="width:17px;"><col style="width:96px;"><col style="width:101px;"></colgroup><tbody>
</tbody>

Spreadsheet Formulas
CellFormula
H6=IF(COUNT(E5,G5),LOOKUP(9.99E+307,H$3:H5)-N(E5)+N(G5),"")

<tbody>
</tbody>

<tbody>
</tbody>


Excel tables to the web >> Excel Jeanie HTML 4

Peter -
That modification did work.
Thanks again for your suggestion and time.
 
Upvote 0

Forum statistics

Threads
1,217,037
Messages
6,134,140
Members
449,861
Latest member
DMJHohl

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