+ Reply to Thread
Results 1 to 3 of 3

How? Open Workbook to specfic tab & cell?

Hybrid View

n2lectual How? Open Workbook to specfic... 03-24-2008, 06:31 PM
Leith Ross Hello N2lectual, You can... 03-24-2008, 07:37 PM
n2lectual Works, Thanks 03-25-2008, 03:41 PM
  1. #1
    Registered User
    Join Date
    03-19-2008
    Posts
    28

    How? Open Workbook to specfic tab & cell?

    My Workbook "Fly Ash Tracking 2008".
    I am saving & closing Workbook via macro on Sheet Tab: "CLOSING" cell A1.
    I need a way that when I open Workbook again it opens with Sheet Tab: "INDEX" cell A1 every time.

    Automatic Macro upon opening? OR does Excel have a function that can do this? Either way I need help on how to accomplish. Thanks

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259
    Hello N2lectual,

    You can add these lines of code to the Workbook_Open Event procedure.

    Procedure Code
    Private Workbook_Open()
    
      Worksheets("INDEX").Activate
      ActiveSheet.Range("A1").Select 
    
    End Sub
    Sincerely,
    Leith Ross

  3. #3
    Registered User
    Join Date
    03-19-2008
    Posts
    28

    Smile Works, Thanks

    Works, thank you.
    n2lectual

+ 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