VBA - Text File Importer Always Brings Through the First File in the Directory

ghost5

New Member
Joined
Sep 28, 2017
Messages
4
Hi,

I've got the code below which I have found on the internet (and modified) to bring in a text file into excel and paste it correctly.
The code works well but regardless of which text file I select, it will always import the first text file that it finds in the directory.
I think I know where the problem is but I have no idea of how to modify it.

I think it has to do with the lines
VBA Code:
    '// Extension
    sExtension = Dir("*.txt")


and
VBA Code:
            "TEXT;" & sExtension, Destination:=Range("$A$" & nRow))
            .Name = sExtension



My code is below, if someone could help me change it so it only imports the text file that is selected, I would be very grateful

Many thanks,

VBA Code:
Sub Import_Test()

    '// Declare a variable as
    Dim nRow            As Long
    Dim sExtension      As String
    Dim oFolder         As FileDialog '// FileDialog object
    Dim vSelectedItem   As Variant

    '// Stop Screen Flickering
    Application.ScreenUpdating = False


  With Application.FileDialog(msoFileDialogFilePicker)
    .AllowMultiSelect = False
    .Title = "Select a file"
    .InitialFileName = Environ("USERPROFILE") & "\Desktop\_MACRO EXPORTS\Track Overlaps\03 Text Overlaps\"
    .Filters.Clear
    .Filters.Add "Text files", "*.txt"
    '.Filters.Add "All files", "*.*"
    If .Show = -1 Then

    '// Extension
    sExtension = Dir("*.txt")

    '// Step through each SelectedItems
 '   For Each vSelectedItem In .SelectedItems

        '// Sets Row Number for Data to Begin


        nRow = Cells(Rows.Count, "A").End(xlUp).Row + 1

        '// Below is importing a text file
        With ActiveSheet.QueryTables.Add(Connection:= _
            "TEXT;" & sExtension, Destination:=Range("$A$" & nRow))
            .Name = sExtension
            .FieldNames = True
            .RowNumbers = False
            .FillAdjacentFormulas = False
            .PreserveFormatting = True
            .RefreshOnFileOpen = False
            .RefreshStyle = xlInsertDeleteCells
            .SavePassword = False
            .SaveData = True
            .AdjustColumnWidth = True
            .RefreshPeriod = 0
            .TextFilePromptOnRefresh = False
            .TextFilePlatform = 850
            .TextFileStartRow = 1
            .TextFileParseType = xlDelimited
            .TextFileTextQualifier = xlTextQualifierDoubleQuote
            .TextFileConsecutiveDelimiter = True
            .TextFileTabDelimiter = True
            .TextFileSemicolonDelimiter = True
            .TextFileCommaDelimiter = True
            .TextFileSpaceDelimiter = True
            .TextFileOtherDelimiter = "="
            .TextFileTrailingMinusNumbers = True
            .Refresh BackgroundQuery:=False
        End With
        sExtension = Dir
'    Next
            '// If Cancel...
            Else
            End If
    End With

    Application.ScreenUpdating = True

    '// Set object to Nothing. Object? see Link Object
    Set oFolder = Nothing


End Sub
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Hi ghost5,

VBA Code:
    sExtension = Dir("*.txt")

indeed will bring up the first file matching criteria, try

VBA Code:
    '// Extension
    sExtension = .SelectedItems(1)

And you should comment the codeline

VBA Code:
        sExtension = Dir

as you have disabled the loop.

Ciao,
Holger
 
Upvote 0
Solution
Hi ghost5,

VBA Code:
    sExtension = Dir("*.txt")

indeed will bring up the first file matching criteria, try

VBA Code:
    '// Extension
    sExtension = .SelectedItems(1)

And you should comment the codeline

VBA Code:
        sExtension = Dir

as you have disabled the loop.

Ciao,
Holger
This is perfect. Thank you.

It will save me from creating multiple folders for multiple text files - I should have asked for a solution 2 years ago!
 
Upvote 0

Forum statistics

Threads
1,215,006
Messages
6,122,666
Members
449,091
Latest member
peppernaut

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top