Ok I've changed the code a bit and now you see both ".txt" and ".prn" files and macro runs without problems. But as you have not uploaded your "slgb0718.png" file I've renamed the "slgt718.txt" you uploaded to a number of different name vise that is png files.
Sub Import()
Dim nRow As Long
Dim sExtension As String
Dim oFolder As FileDialog
Dim vSelectedItem As Variant
Dim cell As Range
Dim i As Integer
Dim j As Integer
Application.ScreenUpdating = False
Set oFolder = Application.FileDialog(msoFileDialogOpen)
With oFolder
.AllowMultiSelect = True
If .Show = -1 Then
sExtension = Dir("*.txt, *.prn")
Range("B3").Activate
For Each vSelectedItem In .SelectedItems
nRow = Range("A1").End(xlUp).Offset(1, 0).Row
With ActiveSheet.QueryTables.Add(Connection:= _
"TEXT;" & vSelectedItem, Destination:=Range("$A$" & nRow))
.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 = xlFixedWidth
.TextFileTextQualifier = xlTextQualifierDoubleQuote
.TextFileConsecutiveDelimiter = False
.TextFileTabDelimiter = True
.TextFileSemicolonDelimiter = False
.TextFileCommaDelimiter = False
.TextFileSpaceDelimiter = False
.TextFileColumnDataTypes = Array(1, 1, 1, 1, 1, 1, 1, 1, 1)
.TextFileFixedColumnWidths = Array(7, 9, 8, 21, 21, 6, 5, 26)
.TextFileTrailingMinusNumbers = True
.Refresh BackgroundQuery:=False
End With
vSelectedItem = Dir("*.txt, *.prn")
Next
Else
End If
End With
Application.ScreenUpdating = True
Set oFolder = Nothing
i = Range("A" & Rows.Count).End(xlUp).Row
For j = i To 2 Step -1
If IsNumeric(Cells(j, 1).Value) Then
Else
Rows(j).EntireRow.Delete
End If
If Cells(j, 1) = "" Then
Rows(j).EntireRow.Delete
End If
Next
Columns(6).Delete
Range("A1") = "S.No."
Range("B1") = "Sheet_Code"
Range("C1") = "E_Code"
Range("D1") = "E_Name"
Range("E1") = "Designation"
Range("F1") = "AMT"
Range("G1") = "Department"
Range("A1:G1").Font.Bold = True
For Each cell In Range("D2:D" & Range("D" & Rows.Count).End(xlUp).Row)
If Len(cell) >= 18 Then
cell.Offset(0, 5) = "Check name in D column, could be cut off!"
End If
Next
End Sub
Alf
Bookmarks