Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Is this an Excel bug and how do I report it?

I am summing a column of numbers, but data from several cells are not adding
to the sum. This is a basic function and a potentially serious bug, but I do
not know how to report it.

I found this problem when I was checking for errors after modifying a data
list. After deleting extraneous data, I wanted to check a column of numbers
to be sure it matched the unmodified column. I totalled both columns by
using the "=Sum(XX:YY)" function; the totals were off by 4.

I had not sorted the list, so I copied the modified column beside the
original and subtracted one row from the other in each column: equal numbers
result in zero, showing the discrepancies. These formualas showed zero for
every row. Yet, summing the columns resulted in different totals!

I identified several cells which were not being summed in the original
column of numbers. The autosum button usually sums an uninterrupted list of
numbers in the column above it. But, using autosum at the bottom of the
problem column put in a sum function which stopped at the problem cell,
apparently reading that cell as a blank although it contained a number. If I
click on the cell, delete its number, re-type and re-enter it, the cell is
then added in by the sum function at the bottom of the column.

I would like to send a sample worksheet to Microsoft so they could possibly
tell me what may be happening. Is there a way to report this?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10,124
Default Is this an Excel bug and how do I report it?

Run this sub on the selected range of cells.

Sub fixmynums()
Application.ScreenUpdating = False
'lr = Cells.SpecialCells(xlCellTypeLastCell).Row
On Error Resume Next
For Each C In Selection 'Range("a1:q" & lr)
If Trim(Len(C)) 0 And C.HasFormula = False Then
C.NumberFormat = "General"
C.Value = CDbl(C)
End If
Next

Application.ScreenUpdating = True
End Sub
--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Eric, JDT Inc" <Eric, JDT
wrote in message
...
I am summing a column of numbers, but data from several cells are not
adding
to the sum. This is a basic function and a potentially serious bug, but I
do
not know how to report it.

I found this problem when I was checking for errors after modifying a data
list. After deleting extraneous data, I wanted to check a column of
numbers
to be sure it matched the unmodified column. I totalled both columns by
using the "=Sum(XX:YY)" function; the totals were off by 4.

I had not sorted the list, so I copied the modified column beside the
original and subtracted one row from the other in each column: equal
numbers
result in zero, showing the discrepancies. These formualas showed zero
for
every row. Yet, summing the columns resulted in different totals!

I identified several cells which were not being summed in the original
column of numbers. The autosum button usually sums an uninterrupted list
of
numbers in the column above it. But, using autosum at the bottom of the
problem column put in a sum function which stopped at the problem cell,
apparently reading that cell as a blank although it contained a number.
If I
click on the cell, delete its number, re-type and re-enter it, the cell is
then added in by the sum function at the bottom of the column.

I would like to send a sample worksheet to Microsoft so they could
possibly
tell me what may be happening. Is there a way to report this?


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,942
Default Is this an Excel bug and how do I report it?

hi
wild guess but i think that some of your numbers were formated as text.
numbers formated as text will behave like you describe.

regards
FSt1

"Eric, JDT Inc" wrote:

I am summing a column of numbers, but data from several cells are not adding
to the sum. This is a basic function and a potentially serious bug, but I do
not know how to report it.

I found this problem when I was checking for errors after modifying a data
list. After deleting extraneous data, I wanted to check a column of numbers
to be sure it matched the unmodified column. I totalled both columns by
using the "=Sum(XX:YY)" function; the totals were off by 4.

I had not sorted the list, so I copied the modified column beside the
original and subtracted one row from the other in each column: equal numbers
result in zero, showing the discrepancies. These formualas showed zero for
every row. Yet, summing the columns resulted in different totals!

I identified several cells which were not being summed in the original
column of numbers. The autosum button usually sums an uninterrupted list of
numbers in the column above it. But, using autosum at the bottom of the
problem column put in a sum function which stopped at the problem cell,
apparently reading that cell as a blank although it contained a number. If I
click on the cell, delete its number, re-type and re-enter it, the cell is
then added in by the sum function at the bottom of the column.

I would like to send a sample worksheet to Microsoft so they could possibly
tell me what may be happening. Is there a way to report this?

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,549
Default Is this an Excel bug and how do I report it?


My guess is that you imported the data and consequently
some of the numbers are being read as text.
All imported data should be cleaned before use in Excel.

True bugs in Excel are rare and when found usually make
the national news reports.
In addition, some "bugs" are dismissed by MS as "by design".
--
Jim Cone
Portland, Oregon USA



"Eric, JDT Inc" <Eric, JDT
wrote in message
I am summing a column of numbers, but data from several cells are not adding
to the sum. This is a basic function and a potentially serious bug, but I do
not know how to report it.

I found this problem when I was checking for errors after modifying a data
list. After deleting extraneous data, I wanted to check a column of numbers
to be sure it matched the unmodified column. I totalled both columns by
using the "=Sum(XX:YY)" function; the totals were off by 4.

I had not sorted the list, so I copied the modified column beside the
original and subtracted one row from the other in each column: equal numbers
result in zero, showing the discrepancies. These formualas showed zero for
every row. Yet, summing the columns resulted in different totals!

I identified several cells which were not being summed in the original
column of numbers. The autosum button usually sums an uninterrupted list of
numbers in the column above it. But, using autosum at the bottom of the
problem column put in a sum function which stopped at the problem cell,
apparently reading that cell as a blank although it contained a number. If I
click on the cell, delete its number, re-type and re-enter it, the cell is
then added in by the sum function at the bottom of the column.

I would like to send a sample worksheet to Microsoft so they could possibly
tell me what may be happening. Is there a way to report this?
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
Getting missing data from one report into another report... vlookupabyss Excel Discussion (Misc queries) 3 January 8th 08 03:26 PM
Automate Excel report to place certain data into existing report? Craig Harrison Excel Worksheet Functions 3 July 25th 06 01:54 PM
Header in Report Manager Report Steve K Excel Discussion (Misc queries) 0 March 7th 06 07:32 PM
Fill an individual report with values from a team report? alymcmorland[_4_] Excel Programming 2 October 13th 05 09:39 AM
EXCEL REPORT Angelika Jackson Excel Programming 1 August 16th 03 02:30 AM


All times are GMT +1. The time now is 06:53 PM.

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

About Us

"It's about Microsoft Excel"