I want to use the same worksheet to hold my text file or data imports (4) files.
I cant see how to move the import to a given column.
Dim wbO As Workbook 'text file
DatFile = Application.GetOpenFilename()
If DatFile = False Then
Exit Sub
End If
Set wbO = Workbooks.Open(DatFile)
wbO.Sheets(1).Cells.Copy wsI.Cells
wbO.Close SaveChanges:=False
heads up