Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Excel

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-23-2008, 02:27 AM
=?Utf-8?B?c3lsdmlhIG9uZw==?=
 
Posts: n/a
Unable to sum numbers taken from websites in excel

I copied numbers from a website to excel. I sum-ed the numbers up, but excel
seem to be unable to recognise them as numbers.
e.g:
8,735,279 13,037,465 4,932,955 7,304,148 7,538,364 --> sum =0

However, if i retype all these values manually, excel can sum the numbers
properly.

Do help!

Reply With Quote
  #2 (permalink)  
Old 07-23-2008, 03:33 AM
AltaEgo
 
Posts: n/a
Re: Unable to sum numbers taken from websites in excel

Your data are formatted as text. Try this:

Type a '1' in any cell.
Copy it.
Select all your pasted values.
Choose Edit, Paste Special and 'multiply'.

--
Steve

"sylvia ong" <sylvia ong@discussions.microsoft.com> wrote in message
news:FB5C66C0-270B-49C8-A597-9CA5D83FF902@microsoft.com...
> I copied numbers from a website to excel. I sum-ed the numbers up, but
> excel
> seem to be unable to recognise them as numbers.
> e.g:
> 8,735,279 13,037,465 4,932,955 7,304,148 7,538,364 --> sum =0
>
> However, if i retype all these values manually, excel can sum the numbers
> properly.
>
> Do help!
>

Reply With Quote
  #3 (permalink)  
Old 07-23-2008, 03:40 AM
=?Utf-8?B?c3lsdmlhIG9uZw==?=
 
Posts: n/a
Re: Unable to sum numbers taken from websites in excel

Hi,

I have tried it :( but it doesnt work.

I found out the error, theres a space at the back of the number in the cell
which prevents excel from recognising it as a number.

Would u have any method to remove the space at the back?

"AltaEgo" wrote:

> Your data are formatted as text. Try this:
>
> Type a '1' in any cell.
> Copy it.
> Select all your pasted values.
> Choose Edit, Paste Special and 'multiply'.
>
> --
> Steve
>
> "sylvia ong" <sylvia ong@discussions.microsoft.com> wrote in message
> news:FB5C66C0-270B-49C8-A597-9CA5D83FF902@microsoft.com...
> > I copied numbers from a website to excel. I sum-ed the numbers up, but
> > excel
> > seem to be unable to recognise them as numbers.
> > e.g:
> > 8,735,279 13,037,465 4,932,955 7,304,148 7,538,364 --> sum =0
> >
> > However, if i retype all these values manually, excel can sum the numbers
> > properly.
> >
> > Do help!
> >

>

Reply With Quote
  #4 (permalink)  
Old 07-23-2008, 04:52 AM
Dave Mills
 
Posts: n/a
Re: Unable to sum numbers taken from websites in excel

Some web sites have numbers with a spaces or other characters in 1st position.
This character does not display but it prevents Excel recognizing the values as
numbers. One such site is ADVFN.COM

Select one cell then look at the formula/text entry bar to see what is in the
cell.


On Tue, 22 Jul 2008 19:27:01 -0700, sylvia ong <sylvia
ong@discussions.microsoft.com> wrote:

>I copied numbers from a website to excel. I sum-ed the numbers up, but excel
>seem to be unable to recognise them as numbers.
>e.g:
>8,735,279 13,037,465 4,932,955 7,304,148 7,538,364 --> sum =0
>
>However, if i retype all these values manually, excel can sum the numbers
>properly.
>
>Do help!

--
Dave Mills
There are 10 type of people, those that understand binary and those that don't.
Reply With Quote
  #5 (permalink)  
Old 07-23-2008, 08:41 AM
Pete_UK
 
Posts: n/a
Re: Unable to sum numbers taken from websites in excel

You often get the non-breaking space character (code 160) when
downloading data from a web-site. You can get rid of them in one
operation by selecting all the affected cells and then CTRL-H (or Edit|
Replace), then:

Find what: Alt-0160
Replace with: leave blank
click Replace All.

Alt-0160 means hold the Alt key down while typing 0160 on the numeric
keypad.

You might still need to multiply those cells by 1 to convert them from
text to numbers - ensure the cell format is set to General first.

Hope this helps.

Pete

On Jul 23, 4:40*am, sylvia ong <sylvia...@discussions.microsoft.com>
wrote:
> Hi,
>
> I have tried it :( but it doesnt work.
>
> I found out the error, theres a space at the back of the number in the cell
> which prevents excel from recognising it as a number.
>
> Would u have any method to remove the space at the back?
>
>
>
> "AltaEgo" wrote:
> > Your data are formatted as text. Try this:

>
> > Type a '1' in any cell.
> > Copy it.
> > Select all your pasted values.
> > Choose Edit, Paste Special and 'multiply'.

>
> > --
> > Steve

>
> > "sylvia ong" <sylvia o...@discussions.microsoft.com> wrote in message
> >news:FB5C66C0-270B-49C8-A597-9CA5D83FF902@microsoft.com...
> > > I copied numbers from a website to excel. I sum-ed the numbers up, but
> > > excel
> > > seem to be unable to recognise them as numbers.
> > > e.g:
> > > 8,735,279 13,037,465 4,932,955 7,304,148 7,538,364 --> sum =0

>
> > > However, if i retype all these values manually, excel can sum the numbers
> > > properly.

>
> > > Do help!- Hide quoted text -

>
> - Show quoted text -


Reply With Quote
  #6 (permalink)  
Old 07-23-2008, 05:33 PM
Rick Rothstein \(MVP - VB\)
 
Posts: n/a
Re: Unable to sum numbers taken from websites in excel

Fixing your data is, of course, the best thing to do; but you can work
around the problem if you will be pasting in data from this same source over
and over again. Assuming the problem is non-breaking spaces (ASCII 160
code), this formula should be able to sum your values (just adjust the range
for where your data actually is)...

=SUMPRODUCT(--SUBSTITUTE(A1:E1,CHAR(160),""))

Rick


"sylvia ong" <sylviaong@discussions.microsoft.com> wrote in message
news:95A82EA0-4E87-433C-A98F-AF3501A0FB9C@microsoft.com...
> Hi,
>
> I have tried it :( but it doesnt work.
>
> I found out the error, theres a space at the back of the number in the
> cell
> which prevents excel from recognising it as a number.
>
> Would u have any method to remove the space at the back?
>
> "AltaEgo" wrote:
>
>> Your data are formatted as text. Try this:
>>
>> Type a '1' in any cell.
>> Copy it.
>> Select all your pasted values.
>> Choose Edit, Paste Special and 'multiply'.
>>
>> --
>> Steve
>>
>> "sylvia ong" <sylvia ong@discussions.microsoft.com> wrote in message
>> news:FB5C66C0-270B-49C8-A597-9CA5D83FF902@microsoft.com...
>> > I copied numbers from a website to excel. I sum-ed the numbers up, but
>> > excel
>> > seem to be unable to recognise them as numbers.
>> > e.g:
>> > 8,735,279 13,037,465 4,932,955 7,304,148 7,538,364 --> sum =0
>> >
>> > However, if i retype all these values manually, excel can sum the
>> > numbers
>> > properly.
>> >
>> > Do help!
>> >

>>


Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Excel


Thread Tools Search this Thread
Search this Thread:

Advanced Search
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 Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 10:07 PM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0


Sponsors:
Credit Counseling | Debt Consolidation | Ringtones | Payday Loans | Pacotes Reveillon Salvador



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109