Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 425
Default downloaded/uploaded sheet not reading data.

worksheet created from downloaded data. when clicking on cells with
data, format cell option not available. macros wont recognize data as
data either. some data is words and some numbers. any way to convert
entire page format to the appropiate text & numbers?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22,906
Default downloaded/uploaded sheet not reading data.

Could be any number of reasons, some of which are addressed in your previous
posting.

TRIM, CLEAN can get rid of some extras.

Non-breaking spaces due to HTML will not respond to Trim or Clean.

Do an EditReplace for Alt + 0160

Enter the 0160 on the numpad.

Could be linefeeds like 0010 or 0013

Chip Pearson has a neat little add-in utility called CellView which shows
you what is in your cells.

http://www.cpearson.com/excel/CellView.aspx

Before you go there.........try this macro

Sub Remove_CR_LF()
With Selection
..Replace what:=Chr(160), replacement:="", _
lookat:=xlPart, SearchOrder:=xlByRows, MatchCase:=False
..Replace what:=Chr(13) & Chr(10), replacement:="", _
lookat:=xlPart, SearchOrder:=xlByRows, MatchCase:=False
..Replace what:=Chr(10), replacement:="", _
lookat:=xlPart, SearchOrder:=xlByRows, MatchCase:=False
End With
End Sub


Gord Dibben MS Excel MVP

On Fri, 12 Feb 2010 11:24:37 -0800 (PST), "J.W. Aldridge"
wrote:

worksheet created from downloaded data. when clicking on cells with
data, format cell option not available. macros wont recognize data as
data either. some data is words and some numbers. any way to convert
entire page format to the appropiate text & numbers?


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
reading data from hidden sheet Atiq Excel Discussion (Misc queries) 4 January 27th 10 08:14 PM
Reading Data from an Excel Sheet Andrew Kirkby Excel Programming 1 September 23rd 08 09:55 PM
Retreiving Sheet1 Data Autometically Uploaded in Sheet2 Akash Excel Programming 2 March 21st 07 12:15 PM
Sheet1 Data Autometically Uploaded in Sheet2 Akash Excel Programming 2 March 8th 07 10:19 AM
Reading data from another sheet where data is in variable cells JDB Excel Discussion (Misc queries) 4 January 2nd 07 11:04 AM


All times are GMT +1. The time now is 08:36 PM.

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

About Us

"It's about Microsoft Excel"