Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi there,
I'm trying to loop through a text file, processing each line of the file depending on the values it contains. Here's what I've got so far, all those bits don't need to be per line, they apply to the whole file. So my question is, how can I loop on the line number of the file? Sub fdsa() Dim FileNumber As Integer, FileLength As Integer, FilePath As String, FullString As String FilePath = "C:\The Export 2.txt" FileNumber = FreeFile Open FilePath For Input As FileNumber FileLength = LOF(FileNumber) FullString = Input(FileLength, FileNumber) MsgBox FullString, vbInformation + vbOKOnly FullString = Replace(FullString, Chr(9), "") MsgBox FullString, vbInformation + vbOKOnly FullString = Replace(FullString, ".00", "") MsgBox FullString, vbInformation + vbOKOnly Close #FileNumber End Sub Cheers, Foss |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Challenge - Excel Line Feed Character CHR(10) - How to Delete and keep the text formatting without going ro single line in a cell ? | Excel Worksheet Functions | |||
A 2 line text showing up in the Cell in Excel prints in 1 line | Excel Discussion (Misc queries) | |||
import huge text file line-by-line? | Excel Programming | |||
Reads entire *.txt file into string opposed to a desired line by line input. | Excel Programming | |||
Excel 2000 Hanging while reading large file with Line Input | Excel Programming |