A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Autosum and Manual Sum not working



 
 
Thread Tools Display Modes
  #1  
Old September 11th, 2006, 07:59 PM posted to microsoft.public.excel.worksheet.functions
Gaileen
external usenet poster
 
Posts: 3
Default Autosum and Manual Sum not working

I want to simply add several rows in a column - all containing currency
formatted cells. No matter what I do the total always appears as "0.00". My
formula seems pretty straightforward: =SUM(G7:G135). I've researched this
for the past 2 hrs. and even had our IT people involved, but no seems to be
able to help. I have a fairly large spreadsheet and don't want to have to
revert to my calculator. Anyone?
  #2  
Old September 11th, 2006, 08:19 PM posted to microsoft.public.excel.worksheet.functions
ES
external usenet poster
 
Posts: 71
Default Autosum and Manual Sum not working

Don't mean to too obvious but have you formatted the relevant cells to
currency ? If not, highlight the column or cells containing the data, right
click, Format Cells, Number, Currency then choose your currency and decimal
places.


--
Es


"Gaileen" wrote:

I want to simply add several rows in a column - all containing currency
formatted cells. No matter what I do the total always appears as "0.00". My
formula seems pretty straightforward: =SUM(G7:G135). I've researched this
for the past 2 hrs. and even had our IT people involved, but no seems to be
able to help. I have a fairly large spreadsheet and don't want to have to
revert to my calculator. Anyone?

  #3  
Old September 11th, 2006, 08:26 PM posted to microsoft.public.excel.worksheet.functions
shail
external usenet poster
 
Posts: 190
Default Autosum and Manual Sum not working

Try using "Trace". This will lead you to from where the data is coming
up. Also look for Circular References (if there is). Just today I
helped our accountant over the same issue the same way.

Thanks,

Shail





Gaileen wrote:
I want to simply add several rows in a column - all containing currency
formatted cells. No matter what I do the total always appears as "0.00". My
formula seems pretty straightforward: =SUM(G7:G135). I've researched this
for the past 2 hrs. and even had our IT people involved, but no seems to be
able to help. I have a fairly large spreadsheet and don't want to have to
revert to my calculator. Anyone?


  #4  
Old September 11th, 2006, 09:00 PM posted to microsoft.public.excel.worksheet.functions
Dave Peterson
external usenet poster
 
Posts: 19,791
Default Autosum and Manual Sum not working

Try this in a different cell:

=count(g7:g135)

This counts the number of cells that contain numbers--it will not include the
cells that are text, but looks like numbers.

If you get something you don't expect (like 0), then one way to fix this is to:

select an empty cell
edit|copy
select G7:G135
edit|paste special|Add

Your text numbers will be converted to number numbers.

Yep. Just formatting the cells as Numbers (or currency or General or anything
else) won't change the value in the cell.

After you've converted the values to real numbers, you can apply the formatting
you want.

==========
If this doesn't help, maybe you've taken your data from a web site???

If you have, you could have those pesky HTML non-breaking spaces in the cells,
too.

David McRitchie has a macro that cleans up this kind of stuff:

http://www.mvps.org/dmcritchie/excel/join.htm#trimall
(look for "Sub Trimall()"

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Gaileen wrote:

I want to simply add several rows in a column - all containing currency
formatted cells. No matter what I do the total always appears as "0.00". My
formula seems pretty straightforward: =SUM(G7:G135). I've researched this
for the past 2 hrs. and even had our IT people involved, but no seems to be
able to help. I have a fairly large spreadsheet and don't want to have to
revert to my calculator. Anyone?


--

Dave Peterson
  #5  
Old September 11th, 2006, 09:15 PM posted to microsoft.public.excel.worksheet.functions
bj
external usenet poster
 
Posts: 1,451
Default Autosum and Manual Sum not working

the cells may be formatted as currency, but the data may still be text.
If the data comes from an outside database, this is real possible.
try putting 1 in an empty cell, copying it, Select G7:G135 and paste special
multiply
to try to convert to numbers.

you could also in an empty cell try =isnumber(G7) to see if they are numbers
or text.

"Gaileen" wrote:

I want to simply add several rows in a column - all containing currency
formatted cells. No matter what I do the total always appears as "0.00". My
formula seems pretty straightforward: =SUM(G7:G135). I've researched this
for the past 2 hrs. and even had our IT people involved, but no seems to be
able to help. I have a fairly large spreadsheet and don't want to have to
revert to my calculator. Anyone?

  #6  
Old September 11th, 2006, 10:47 PM posted to microsoft.public.excel.worksheet.functions
Gaileen
external usenet poster
 
Posts: 3
Default Autosum and Manual Sum not working

I have tried everyone's suggestions but to no avail. I have used empty
cells, new worksheet, multiplying, subtracting, adding, but still get "0".
For some reason Excel is just not calculating basic math, either that, or I'm
having one huge mental block here that I'll never live down. I'll re-boot my
system and make sure I have all current MS Office updates and if that doesn't
work, I'll try your links below. Thanks for the effort. Signed;
Spiralling into Deep Depression.

"Dave Peterson" wrote:

Try this in a different cell:

=count(g7:g135)

This counts the number of cells that contain numbers--it will not include the
cells that are text, but looks like numbers.

If you get something you don't expect (like 0), then one way to fix this is to:

select an empty cell
edit|copy
select G7:G135
edit|paste special|Add

Your text numbers will be converted to number numbers.

Yep. Just formatting the cells as Numbers (or currency or General or anything
else) won't change the value in the cell.

After you've converted the values to real numbers, you can apply the formatting
you want.

==========
If this doesn't help, maybe you've taken your data from a web site???

If you have, you could have those pesky HTML non-breaking spaces in the cells,
too.

David McRitchie has a macro that cleans up this kind of stuff:

http://www.mvps.org/dmcritchie/excel/join.htm#trimall
(look for "Sub Trimall()"

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Gaileen wrote:

I want to simply add several rows in a column - all containing currency
formatted cells. No matter what I do the total always appears as "0.00". My
formula seems pretty straightforward: =SUM(G7:G135). I've researched this
for the past 2 hrs. and even had our IT people involved, but no seems to be
able to help. I have a fairly large spreadsheet and don't want to have to
revert to my calculator. Anyone?


--

Dave Peterson

  #7  
Old September 11th, 2006, 11:06 PM posted to microsoft.public.excel.worksheet.functions
Gaileen
external usenet poster
 
Posts: 3
Default Autosum and Manual Sum not working

Thanks everyone for your effort. I have fixed the problem by rebooting my
system. Aaargh! Now if I can Excel to caculate how may calories I burned
and strands of hair I've pulled out in the last 3 hrs. it'll be worth every
penny!

"Gaileen" wrote:

I want to simply add several rows in a column - all containing currency
formatted cells. No matter what I do the total always appears as "0.00". My
formula seems pretty straightforward: =SUM(G7:G135). I've researched this
for the past 2 hrs. and even had our IT people involved, but no seems to be
able to help. I have a fairly large spreadsheet and don't want to have to
revert to my calculator. Anyone?

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 08:18 AM.


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