+ Reply to Thread
Results 1 to 5 of 5

Auto naming tabs in a workbook

  1. #1
    Registered User
    Join Date
    01-18-2013
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    3

    Auto naming tabs in a workbook

    I'm trying to auto name the 14 tabs of a 2 week workbook with the value of cell B1 which is the date entered on the first worksheet and then auto populated into the other worksheets. The code that I am using does work but on each sheet I have to click on B1 and then the formula bar in order for the tab name to change.

    Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
    For Each ws In Worksheets
    ActiveSheet.Name = Format(Range("B1").Value, "mmm dd")

    Next
    End Sub


    This is the code that I'm using in "ThisWorkbook", can anyone help with this?

  2. #2
    Forum Guru HaHoBe's Avatar
    Join Date
    02-19-2005
    Location
    Hamburg, Germany
    MS-Off Ver
    work: 2016 on Win10 (notebook), private: 365 on Win11 (desktop), 2019 on Win11 (notebook)
    Posts
    8,198

    Re: Auto naming tabs in a workbook

    Hi, v,

    take that code away and place this code behind the sheet where you enter the data (the first one, right click on sheet tab, view code):
    Please Login or Register  to view this content.
    Ciao,
    Holger
    Use Code-Tags for showing your code: [code] Your Code here [/code]
    Please mark your question Solved if there has been offered a solution that works fine for you

  3. #3
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 insider Version 2504 Win 11
    Posts
    24,706

    Re: Auto naming tabs in a workbook

    Look here
    http://msdn.microsoft.com/en-us/libr.../ff837411.aspx
    Alan עַם יִשְׂרָאֵל חַי


    Change an Ugly Report with Power Query
    Database Normalization
    Complete Guide to Power Query
    Man's Mind Stretched to New Dimensions Never Returns to Its Original Form

  4. #4
    Registered User
    Join Date
    01-18-2013
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    3

    Re: Auto naming tabs in a workbook

    Sorry guys, I tried both of these and can't seem to get them to do anything. I am VB illiterate so the problem may be the keyboard operator.

  5. #5
    Registered User
    Join Date
    01-18-2013
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    3

    Re: Auto naming tabs in a workbook

    Thanks Holger, with a little bit of a modification I have it working now.
    I entered this code into "ThisWorkbook" and now as soon as I enter the first date, all the tabs rename.

    Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
    For Each ws In Worksheets
    If Not ws.Range("B1").Value = "" Then ws.Name = Format(ws.Range("B1").Value, "mmm dd")
    Next ws
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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