Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm using TextToColumns in a macro to convert several huge text files
to a spreadsheet. Some of the raw data is numbers but I need everything to be copied as text. I found this question numerous times in this forum but none with the answer I'm looking for. The problem is, even with the code below the numbers are wrong. For example, there is a difference between "2" and "02" in my data, but even with the NumberFormat command the text both variations will copy as "2", and some numeric strings are converted to SciNote. Is there a way to copy all text from the raw document as text without any translation at all? ' Force number format to text: Cells.Select Selection.NumberFormat = "@" ' Convert unformatted text to 15 columns: Selection.TextToColumns Destination:=Range("A1"), DataType:=xlFixedWidth, _ FieldInfo:=Array(Array(0, 1), Array(5, 1), Array(11, 1), Array(17, 1), . . . . . I'm using Excel 2003, with XP Pro. Mike Henry |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Reading Text | Excel Discussion (Misc queries) | |||
Reading Numbers in Words | New Users to Excel | |||
Reading Text and numbers | Excel Discussion (Misc queries) | |||
Date in text box reading mm/dd/yy instead of dd/mm/yy | Excel Programming | |||
Reading a text file | Excel Discussion (Misc queries) |