Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Can't do formulas with numbers...

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?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default Can't do formulas with numbers...

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?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Can't do formulas with numbers...

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?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,345
Default Can't do formulas with numbers...

"Emoke" wrote in message
...
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


Replace @mailinator.com with @tiscali.co.uk


"Emoke" wrote in message
...
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?




  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Can't do formulas with numbers...

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?



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default Can't do formulas with numbers...

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" wrote in message
...
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
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
Formulas with Negative Numbers Motaad Excel Discussion (Misc queries) 2 January 18th 07 11:37 PM
counting numbers not formulas Kit M Excel Worksheet Functions 4 October 22nd 06 07:51 PM
save .xls w/o the formulas just the numbers jim sturtz New Users to Excel 1 July 17th 06 04:34 PM
Changing column of numbers made of formulas to just numbers CJ Excel Discussion (Misc queries) 2 June 14th 06 02:13 PM
formulas to numbers Steve New Users to Excel 2 September 16th 05 12:07 AM


All times are GMT +1. The time now is 10:02 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"