Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to copy 3 data strings from a text file and paste them
into 3 adjacent cells in the calling sheet. I have code so far that opens the file, finds the line with the correct data and tries to parse it. my datafile is in the following format: Data1|Data2|Data3|Data4|Data5|Data6|Data7|Data8 where the separater is "|" and the data is both text and numbers. I need extract Data5, Data6, Data7 out of the line and paste into cells A1,A2,A3 or where ever I need them. But I am hoping to get them into a format that I can paste values from the clipboard. I am having trouble parsing the data line extracting the correct lines using string commands. Is there an easier way to get this info? Public Sub ImportTextFile() Dim WholeLine As String Dim WholeLineArray(7) As String Application.ScreenUpdating = False FName = "Y:\2007 Project Files\Sample Database.txt" Open FName For Input Access Read As #1 sepcount = 0 While Not EOF(1) Line Input #1, WholeLine If Left(WholeLine, 8) = "27125001" Then For I = 1 To Len(WholeLine) C$ = Mid(WholeLine, I, 1) If C$ = "|" Then sepcount = sepcount + 1 WholeLineArray(sepcount) = Mid(WholeLine, sepcount, I - 1) MsgBox WholeLineArray(sepcount) End If Next I GoTo EndMacro End If Wend EndMacro: Application.ScreenUpdating = True Close #1 End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Parsing / seperating text string in excel cell | Excel Discussion (Misc queries) | |||
Parsing a text string into separate cells | Excel Worksheet Functions | |||
Import & Parsing a small 400 line CSV file | Excel Programming | |||
VBA Import of text file & Array parsing of that data | Excel Discussion (Misc queries) | |||
Reads entire *.txt file into string opposed to a desired line by line input. | Excel Programming |