How to stop running total on excel spreadsheet

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I prevent a running total on spreadsheet. ie, A3+B2 is a total for B3.
Yet B4,B5,B6 shows same total. How do I keep these other cells @ zeros or
blank until next entry? Thanks.
 
In B3, use

=IF(A3<>"",A3+B2,"")

and copy across

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Just another way, returning zero instead of null.

With first value starting in A2, try this in B2:

=SUM($A$2:A2)*(A2<>"")
--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


In B3, use

=IF(A3<>"",A3+B2,"")

and copy across

--

HTH

RP
(remove nothere from the email address if mailing direct)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top