Auto Calculate Amount Remaining

Capsaicin Burn

New Member
Joined
Jan 26, 2018
Messages
38
A
B
C
D
E
F
G
H
1
Debt
Payment
Due
Jun
Jul
Aug
Sep
Oct
2
Loan
$75
1st
Y
3
CC1
$25
4th
Y
4
CC2
$25
10th
Y
5
CC3
$30
15th
6
Internet
$75
20th
7
Cell
$100
21st
Y
8
Ins
$100
24th
9
Car
$350
28th
Y
10
Total
$625
Remaining
$205

<tbody>
</tbody>


















Columns A,B and C never change

My dilemma is making row 10 auto calculate and populate what is still due each month.

I simply mark each debt with a Y to indicate "Yes it has been paid". A blank cell indicates it has NOT been paid.

Currently I just add it up manually after each payment is made. I would like it to figure out, and update, the amount remaining as I make payments. How to make it calculate automatically has baffled me to date.

Any Help would be greatly appreciated!

Jim
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
when I totaled the B column, I got $780. ??

D10:
Code:
=SUMPRODUCT(("Y"<>$D$2:D$9)*$B$2:$B$9)

E10:
Code:
=D10-SUMPRODUCT((E2:E9="Y")*$B$2:$B$9)

And fill E column across.
 
Last edited:
Upvote 0
Thanks kweaver. Your calculation is correct. Those numbers are fictitious and I clearly missed something in my calculation in this example.
 
Last edited:
Upvote 0
ABCDEFGH
1DebtPaymentDueJunJulAugSepOct
2Loan$751stY
3CC1$254thY
4CC2$2510thY
5CC3$3015th
6Internet$7520th
7Cell$10021stY
8Ins$10024th
9Car$35028thY
10Total$625Remaining$205

<tbody>
</tbody>


















Columns A,B and C never change

My dilemma is making row 10 auto calculate and populate what is still due each month.

I simply mark each debt with a Y to indicate "Yes it has been paid". A blank cell indicates it has NOT been paid.

Currently I just add it up manually after each payment is made. I would like it to figure out, and update, the amount remaining as I make payments. How to make it calculate automatically has baffled me to date.

Any Help would be greatly appreciated!

Jim

=SUMIF(D:D,"",B:B)

Make sure your total in column B is accurate
 
Upvote 0
DebtPaymentDueJunJulAugSepOct
Loan$751stY
CC1$254thY
CC2$2510thY
CC3$3015th Y
Internet$7520th Y
Cell$10021stY
Ins$10024th Y
Car$35028thY
Total$780Remaining$205$175$100$100$0

<colgroup><col span="8"></colgroup><tbody>
</tbody>


Is what I got.
 
Upvote 0
Thank you Fazza. It worked perfectly. I need to do a little research to understand why it worked though. Does the "" part indicated an empty cell?
 
Upvote 0
I guess the question I have is are you always paying out of the 780 every month? That's not what I calculated. I calculated that you were catching up with the payments month by month and show what's still remaining.
 
Upvote 0
I suspect it works. I'm slightly confused about the reason for the seemingly great differences of D10 and E10 though. I have a lot to learn though.
 
Upvote 0

Forum statistics

Threads
1,214,657
Messages
6,120,769
Members
448,991
Latest member
Hanakoro

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