Thread: Running Total
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Patrick Molloy[_2_] Patrick Molloy[_2_] is offline
external usenet poster
 
Posts: 1,298
Default Running Total

if all column A is additions and B is subtractions

then C1
=SUM(A:A) - SUM(B:B)


"STRAC" wrote:

I am looking for the formula which will allow me to keep a running total of
items on hand.

For example:

Quantity currently on hand is 100
I issue out 10
I receive in 5
My running total is 95

I know how to do the simple formula for this transaction, however, how do I
then, without having th add a ton of rows, add or subtract from the 95 figure
(how do I make that the old qty on hand), so if I have more issues and
subtractions...

Thanks in advance!