Hello,
I have this VBA code that I partially recorded. Firstly it asks files to be imported and then puts each file into separate sheet.
But how to get the currently connected file's name?
I would like that each sheet has the file's name as title.
For example if I import files: test1.csv, test2.csv, test3.csv
Then I would like to have sheet names: test1, test2, test3
To change sheet name, there is code:
ActiveSheet.Name = "New Name"
Here is my VBA code:
Sub Macro1()
MsgBox "Every file is added to a new sheet!"
fname = Application.GetOpenFilename(MultiSelect:=True)
For Each file In fname
Sheets.Add After:=Sheets(Sheets.Count)
Range("A1").Select
With ActiveSheet.QueryTables.Add(Connection:="TEXT;" & file, Destination:=ActiveSheet.Range("A1"))
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.TextFilePromptOnRefresh = False
.TextFilePlatform = 775
.TextFileStartRow = 1
.TextFileParseType = xlDelimited
.TextFileTextQualifier = xlTextQualifierDoubleQuote
.TextFileConsecutiveDelimiter = False
.TextFileTabDelimiter = True
.TextFileSemicolonDelimiter = False
.TextFileCommaDelimiter = False
.TextFileSpaceDelimiter = False
.TextFileColumnDataTypes = Array(1, 1, 1, 1, 1)
.TextFileTrailingMinusNumbers = True
.Refresh BackgroundQuery:=False
Columns.EntireColumn.AutoFit
' ActiveSheet.Name = filename
End With
Next
End Sub
Bookmarks