View Single Post
  #5   Report Post  
Paul Sheppard
 
Posts: n/a
Default


jam4jah Wrote:
I am using Excel 2003. I want to create a worksheet that has two
columns:
one for expense and second for remaining cash. The worksheet has 31
rows for
31 days in a month. I want to input an expense on any given day, even
skipping days were no expenses occured and have only the cell next to
the
expense cell show the remaining balance.

Example:
Day Budget amount $400.00
Expense Remaining Balance
1 $100 $300
2 (empty cell) (empty cell)
3 (empty cell) (empty cell)
4 $50 $250
5 (empty cell) (empty cell)
6 $100 $150
and so on, and so on, etc.

How can I accomplish this?


Hi jam4jah

Assuming your data to be laid out like the table below

ColumnA ColumnB
Day Budget 400

100 300


50 250

100 150

In cell B2 enter this formula:- =IF(A2="","",$B$1-SUM($A$1:A2)), copy
this down columnB


--
Paul Sheppard


------------------------------------------------------------------------
Paul Sheppard's Profile: http://www.excelforum.com/member.php...o&userid=24783
View this thread: http://www.excelforum.com/showthread...hreadid=400346