+ Reply to Thread
Results 1 to 3 of 3

Reffering to sheets - not by name

Hybrid View

  1. #1
    Registered User
    Join Date
    01-04-2006
    Posts
    70

    Reffering to sheets - not by name

    Hi, this is probably a really easy one.

    I have this code:

    Sub Button17_Click()
    Sheets("Blank 1").Activate
    Range("E6").Select
    End Sub
    ...to assign to a button to change sheets (obviously...). The trouble is that the sheets in the workbook change name, via another macro. So the sheet known as 'Blank 1', when filled in, might be called something else entirely.

    Can I refer to the sheet by some other means to keep this macro working?

  2. #2
    Registered User
    Join Date
    01-04-2006
    Posts
    70

    Re: Reffering to sheets - not by name

    Sheet1.Activate
    ...figured it out myself :-)

  3. #3
    Forum Contributor
    Join Date
    12-28-2011
    Location
    England
    MS-Off Ver
    Excel 2007
    Posts
    280

    Re: Reffering to sheets - not by name

    Hi

    You can refer to it by CodeName - this is another property of a worksheet and isn't so easy to change so it is much more stable. If you look in the Project Window of your VBE (top left usually) at your workbooks, the codenames will be the name given first for each sheet. The name is what is in the brackets.

    So, you can refer to the sheet like:

    Sheet1.Activate   'amend codename as appropriate

+ 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