+ Reply to Thread
Results 1 to 2 of 2

How do I automatically open a spreadsheet in a specific worksheet?

  1. #1
    GT
    Guest

    How do I automatically open a spreadsheet in a specific worksheet?

    I have a main worksheet that I have hyperlinked all of the other worksheets.
    It would be best if the user can always open this spreadsheet and go to this
    main sheet right away.

  2. #2
    Dave Peterson
    Guest

    Re: How do I automatically open a spreadsheet in a specific worksheet?

    If you save it with that worksheet selected, then it'll open that way.

    Or you could use a macro (in a general module):

    option explicit
    sub auto_open()
    application.goto thisworkbook.worksheets("Sheet99").range("a1"), _
    scroll:=true
    end sub

    If you're new to macros, you may want to read David McRitchie's intro at:
    http://www.mvps.org/dmcritchie/excel/getstarted.htm

    GT wrote:
    >
    > I have a main worksheet that I have hyperlinked all of the other worksheets.
    > It would be best if the user can always open this spreadsheet and go to this
    > main sheet right away.


    --

    Dave Peterson

+ 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