PC Review


Reply
Thread Tools Rate Thread

Can't do formulas with numbers...

 
 
=?Utf-8?B?RW1va2U=?=
Guest
Posts: n/a
 
      19th Sep 2007
When I import the files (i recieved via email) into excel, everything is OK,
except Excell doesn't recognise the numbers in the cells as such and as a
result, it doesn't do formulas.. Anyone know the trick to fix the problem?
 
Reply With Quote
 
 
 
 
=?Utf-8?B?TWlrZSBI?=
Guest
Posts: n/a
 
      19th Sep 2007
Maybe,

Select a blank cell and choose Edit|Copy
Select the cells that contain the (text) numbers
Choose Edit|paste special and select Add
Click OK

Mike

"Emoke" wrote:

> When I import the files (i recieved via email) into excel, everything is OK,
> except Excell doesn't recognise the numbers in the cells as such and as a
> result, it doesn't do formulas.. Anyone know the trick to fix the problem?

 
Reply With Quote
 
=?Utf-8?B?RW1va2U=?=
Guest
Posts: n/a
 
      19th Sep 2007
Tried that. Still nothing. I also tried to fix each number by hand then reset
the cell formating. (which wouldn't work anyway bc i hace abt 300,000 rows
and 15 columns). Still same issue

"Mike H" wrote:

> Maybe,
>
> Select a blank cell and choose Edit|Copy
> Select the cells that contain the (text) numbers
> Choose Edit|paste special and select Add
> Click OK
>
> Mike
>
> "Emoke" wrote:
>
> > When I import the files (i recieved via email) into excel, everything is OK,
> > except Excell doesn't recognise the numbers in the cells as such and as a
> > result, it doesn't do formulas.. Anyone know the trick to fix the problem?

 
Reply With Quote
 
Sandy Mann
Guest
Posts: n/a
 
      19th Sep 2007
"Emoke" <(E-Mail Removed)> wrote in message
newsD1D680B-58D0-4EF9-93CA-(E-Mail Removed)...
> the cell formating. (which wouldn't work anyway bc i hace abt 300,000 rows


300,000 rows? I assume you have XL2007. It may be therefore that the menu
references I give are not correct.

It may be that you have non-printing characters in the cells as well as the
number that you can see. Try this on a copy of the data because Replace can
make unwanted changes if you are not careful:

Select that cells that you want to change and then select:

Edit > Replace
In the "Find what:" dialog box enter 0160 *from the number pad* NOT the
numbers above the letters.
Leave the "Replace with:" box empty and press "Replace all"

This will remove all HTML non-breaking spaces

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(E-Mail Removed)
Replace @mailinator.com with @tiscali.co.uk


"Emoke" <(E-Mail Removed)> wrote in message
newsD1D680B-58D0-4EF9-93CA-(E-Mail Removed)...
> Tried that. Still nothing. I also tried to fix each number by hand then
> reset
> the cell formating. (which wouldn't work anyway bc i hace abt 300,000 rows
> and 15 columns). Still same issue
>
> "Mike H" wrote:
>
>> Maybe,
>>
>> Select a blank cell and choose Edit|Copy
>> Select the cells that contain the (text) numbers
>> Choose Edit|paste special and select Add
>> Click OK
>>
>> Mike
>>
>> "Emoke" wrote:
>>
>> > When I import the files (i recieved via email) into excel, everything
>> > is OK,
>> > except Excell doesn't recognise the numbers in the cells as such and as
>> > a
>> > result, it doesn't do formulas.. Anyone know the trick to fix the
>> > problem?

>



 
Reply With Quote
 
=?Utf-8?B?R2FyeScncyBTdHVkZW50?=
Guest
Posts: n/a
 
      19th Sep 2007
You may have blanks or ascii-160 characters in the cells along with the
digits. Try running this small macro:

Sub numerify()
Dim r As Range
Count = 0
For Each r In ActiveSheet.UsedRange
If Application.IsText(r.Value) Then
If IsNumeric(r.Value) Then
r.Value = 1# * r.Value
r.NumberFormat = "General"
Count = Count + 1
End If
End If
Next
MsgBox (Count & " cells changed")
End Sub


--
Gary''s Student - gsnu200745


"Emoke" wrote:

> Tried that. Still nothing. I also tried to fix each number by hand then reset
> the cell formating. (which wouldn't work anyway bc i hace abt 300,000 rows
> and 15 columns). Still same issue
>
> "Mike H" wrote:
>
> > Maybe,
> >
> > Select a blank cell and choose Edit|Copy
> > Select the cells that contain the (text) numbers
> > Choose Edit|paste special and select Add
> > Click OK
> >
> > Mike
> >
> > "Emoke" wrote:
> >
> > > When I import the files (i recieved via email) into excel, everything is OK,
> > > except Excell doesn't recognise the numbers in the cells as such and as a
> > > result, it doesn't do formulas.. Anyone know the trick to fix the problem?

 
Reply With Quote
 
David Biddulph
Guest
Posts: n/a
 
      19th Sep 2007
A number of tricks:
1 It might be worth trying selecting a blank cell, copy, then select your
"numbers", & Edit/ Paste special/ Add.
2 You might try Data/ Text to columns.
3 If you've got spaces aand/or non-printing characters in your cells with
the "numbers", you might try the TRIM or CLEAN functions.
4 If you are still struggling, you might need to identify the individual
characters in the cell (split with MID) using the CODE function.
5 It might also be worth looking at your input files with a text reader,
perhaps Notepad, to see whether that gives any clues.
--
David Biddulph

"Emoke" <(E-Mail Removed)> wrote in message
news:B901E63A-97D5-4184-8707-(E-Mail Removed)...
> When I import the files (i recieved via email) into excel, everything is
> OK,
> except Excell doesn't recognise the numbers in the cells as such and as a
> result, it doesn't do formulas.. Anyone know the trick to fix the problem?



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Formulas to Numbers MAD Microsoft Excel Worksheet Functions 2 13th May 2010 04:43 PM
Numbers only--No formulas please =?Utf-8?B?RWxsZW5N?= Microsoft Access External Data 1 18th Mar 2007 02:26 AM
Changing column of numbers made of formulas to just numbers =?Utf-8?B?Q0o=?= Microsoft Excel Misc 2 14th Jun 2006 02:13 PM
formulas to numbers =?Utf-8?B?U3RldmU=?= Microsoft Excel New Users 2 16th Sep 2005 12:07 AM
Formulas to find a sum of numbers =?Utf-8?B?cmFtYmxyZWI=?= Microsoft Excel Misc 4 14th Oct 2004 09:05 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:23 PM.