Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Alex,
What are you trying to do here? This will open the file and load each line into an array using VBs file access system... Sub ReadFile() Dim temp() As Variant, lngInc As Long Open strFile For Input As #1 While Not EOF(1) ReDim Preserve temp(lngInc) Line Input #1, temp(lngInc) Let lngInc = lngInc + 1 Wend Close #1 End Sub OJ |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VBA macro for reading text file into Excel | Excel Discussion (Misc queries) | |||
While reading excel file i am getting null values | Excel Programming | |||
While reading excel file i am getting null values | Excel Programming | |||
Reading an excel file in SPSS | Excel Programming | |||
Reading an Excel file after upload | Excel Programming |