View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
David Biddulph[_2_] David Biddulph[_2_] is offline
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?