+ Reply to Thread
Results 1 to 3 of 3

Tab Names-Is it possible to set the tab names equal to a cell?

  1. #1
    Registered User
    Join Date
    05-26-2006
    Posts
    4

    Tab Names-Is it possible to set the tab names equal to a cell?

    Is it possible to set the tab (worksheet) names equal to a cell?

  2. #2
    Chip Pearson
    Guest

    re: Tab Names-Is it possible to set the tab names equal to a cell?

    Only with VBA code.


    Sub AAA()
    Worksheets(1).Name = Worksheets(1).Range("A1").Value
    End Sub



    --
    Cordially,
    Chip Pearson
    Microsoft MVP - Excel
    Pearson Software Consulting, LLC
    www.cpearson.com

    "higherlimits"
    <[email protected]> wrote
    in message
    news:[email protected]...
    >
    > Is it possible to set the tab (worksheet) names equal to a
    > cell?
    >
    >
    > --
    > higherlimits
    > ------------------------------------------------------------------------
    > higherlimits's Profile:
    > http://www.excelforum.com/member.php...o&userid=34841
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=545891
    >




  3. #3
    Gary''s Student
    Guest

    re: Tab Names-Is it possible to set the tab names equal to a cell?

    Yes, but:

    1. the cell must contain a legal tab name
    2. tab names must be unique

    Sub Macro2()
    Sheets("Sheet1").Select
    Sheets("Sheet1").Name = Cells(1, 1).Value
    End Sub


    --
    Gary''s Student


    "higherlimits" wrote:

    >
    > Is it possible to set the tab (worksheet) names equal to a cell?
    >
    >
    > --
    > higherlimits
    > ------------------------------------------------------------------------
    > higherlimits's Profile: http://www.excelforum.com/member.php...o&userid=34841
    > View this thread: http://www.excelforum.com/showthread...hreadid=545891
    >
    >


+ 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