Auto sum does not add inserted figures in colum

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

Guest

Inserting figures in a colum after I have used auto sum does not total the
added figures. Please help me, what do I have to do. I'm using XP home
version and office professional edition 2003.

I have never had that problem using with previous excel with windows 98.

Thanks
 
Hi Bedros,
Using the List function might solve your problem.
Rgds,
PDS.
 
Do you mean you change values in existing cells?

If yes, look at your =subtotal() or =sum() formula to make sure that it includes
the correct range. (Excel may have guessed the wrong range.

If you mean you inserted a row between the total line and the last row of
details and then added another value in that row, you can change your formula to
something like:

With your data in A1:A21 and your formula in A21, you could use a formula like:

=sum(a3:offset(a21,-1,0))

It says to sum up the values in A3 to one row above cell A21.

When you insert a row, that formula will adjust to still point at the cell above
the formula's cell.
 
I think Dave meant something like with your data in A3:A20 rather than A1:A21
then you can use
A21: =sum(a$3:offset(a21,-1,0))

That's offset by one row upward, and 0 columns to the right
 
Thanks for the correction. (Stupid fingers!!!)

David said:
I think Dave meant something like with your data in A3:A20 rather than A1:A21
then you can use
A21: =sum(a$3:offset(a21,-1,0))

That's offset by one row upward, and 0 columns to the right
 

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

Similar Threads

totaling figures in colum 3
auto sum 2
auto sum 6
the If Statements 2
Auto Filter? 2
auto sum from multiple worksheets 5
Get percentage of whole 2
Time Sum in Excel 1

Back
Top