Forum Discussion
cdean001
Apr 11, 2019Copper Contributor
Running balance
Hi - I need help with an excel formula to show a remaining balance. For example, I have an account with an available balance. I need to set up a formula (in say, column O) that will reference the b...
SergeiBaklan
Apr 11, 2019MVP
cdean001 , what about
=SUM(anothersheet!<balance>, C10:N10)
- cdean001Apr 11, 2019Copper Contributor
Hi SergeiBaklan, I tried that formula but it is increasing my remaining balance rather than subtracting the invoice amounts from it. I apologize if my previous question wasn't clear enough, I need each invoice entry to subtract from the initial amount leaving me with a remaining balance. Does that make sense?
- cdean001Apr 15, 2019Copper ContributorWOO HOO!! That worked! Thank you so much SergeiBaklan! Total life saver!
- SergeiBaklanApr 12, 2019MVP
cdean001 , when it could be
=anothersheet!<balance> -SUM($C$10:N10)
You may start from
=anothersheet!<balance> -SUM($C$10:C$10)
and drag it to the right to show result for each month.