Results 1 to 9 of 9

Imported file name as SHEET TITLE

Threaded View

  1. #1
    Registered User
    Join Date
    03-19-2010
    Location
    Estonia
    MS-Off Ver
    Excel 2016
    Posts
    25

    Imported file name as SHEET TITLE

    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
    Last edited by fred123; 04-06-2017 at 05:16 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Search a sheet for a song title and return Album title
    By A440 in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 10-28-2016, 10:19 AM
  2. [SOLVED] inserting a timestamp on the data sheet when a raw data file is imported
    By macrorookie in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 02-14-2014, 02:18 PM
  3. [SOLVED] import every file in the folder and rename sheet to the imported file name
    By vivek_work in forum Excel Programming / VBA / Macros
    Replies: 15
    Last Post: 09-04-2012, 02:46 PM
  4. Rename sheet to match name of an imported file
    By Jackets in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 05-06-2010, 01:41 PM
  5. How to rename sheet to match name of the imported file
    By GoJackets in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-11-2010, 09:18 PM
  6. add imported text file name above imported data
    By tompie in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-27-2009, 08:18 AM
  7. Macro to name sheet with imported .CSV file name
    By MichielEngineer in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 11-05-2008, 06:42 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1