Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Balance sheet functions?

I would like to add 2 columns and display the results in a 3rd column and
keep a running balance. A "check" register is really what I would like to
set up.

Would I write the function in the "c" column for example?
=sum(A1+B1)

then for the next row that the info will go into cell C2
=sum(C1+A2+B2)

I was wondering how to write out the function so that I don't have to do it
for each cell. Something like a variable N?


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,722
Default Balance sheet functions?

In your debit column (column B?) are you entering negative values, or positive?

If negative:
=A1+B1
and then next row copied down) is:
=A2+B2+C1

If positive:
=A1-B1
and then next row (copied down)
=A2-B2+C1

Variations for cleanliness:
=IF(COUNT(A2:B2)=0,"",A2-B2+C1)
This would display a blank cell if not entry has been made yet.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Behrens" wrote:

I would like to add 2 columns and display the results in a 3rd column and
keep a running balance. A "check" register is really what I would like to
set up.

Would I write the function in the "c" column for example?
=sum(A1+B1)

then for the next row that the info will go into cell C2
=sum(C1+A2+B2)

I was wondering how to write out the function so that I don't have to do it
for each cell. Something like a variable N?


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Balance sheet functions?

In C1 enter the below formula and copy down as required
=SUM($A$1:B1)

If this post helps click Yes
---------------
Jacob Skaria


"Behrens" wrote:

I would like to add 2 columns and display the results in a 3rd column and
keep a running balance. A "check" register is really what I would like to
set up.

Would I write the function in the "c" column for example?
=sum(A1+B1)

then for the next row that the info will go into cell C2
=sum(C1+A2+B2)

I was wondering how to write out the function so that I don't have to do it
for each cell. Something like a variable N?


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default Balance sheet functions?

You don't need the SUM function.
=sum(A1+B1) is no different from =A1+B1
=sum(C1+A2+B2) is no different from =C1+A2+B2

If you want to know what the SUM function does, and what its syntax is, look
it up in Excel help.
--
David Biddulph

<Behrens wrote in message
...
I would like to add 2 columns and display the results in a 3rd column and
keep a running balance. A "check" register is really what I would like to
set up.

Would I write the function in the "c" column for example?
=sum(A1+B1)

then for the next row that the info will go into cell C2
=sum(C1+A2+B2)

I was wondering how to write out the function so that I don't have to do
it
for each cell. Something like a variable N?




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
balance sheet sw New Users to Excel 5 January 26th 09 01:09 AM
balance sheet Ryan New Users to Excel 1 October 12th 06 08:31 PM
Balance sheet plowleg Excel Discussion (Misc queries) 6 November 7th 05 01:38 PM
Are there any balance sheet templates? happy Excel Worksheet Functions 0 February 21st 05 10:57 PM
A balance sheet Ida Lundberg Excel Worksheet Functions 3 January 28th 05 11:52 PM


All times are GMT +1. The time now is 02:34 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"