+ Reply to Thread
Results 1 to 4 of 4

Return to A1 when reopening

Hybrid View

  1. #1
    Aldo
    Guest

    Return to A1 when reopening

    I have a workbook containing 5 worksheets. It is edited by 30 people
    from a shared drive at work. How do I set it up so that when it is
    opened it always returns to cell A1 on the first sheet ( and not to the
    point of the last edit) so that I can ensure that users see any new
    data there ?


  2. #2
    Dave Peterson
    Guest

    Re: Return to A1 when reopening

    You can use a macro:

    Option Explicit
    Sub Auto_Open()
    application.goto worksheets(1).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

    Aldo wrote:
    >
    > I have a workbook containing 5 worksheets. It is edited by 30 people
    > from a shared drive at work. How do I set it up so that when it is
    > opened it always returns to cell A1 on the first sheet ( and not to the
    > point of the last edit) so that I can ensure that users see any new
    > data there ?


    --

    Dave Peterson

  3. #3
    Aldo
    Guest

    Re: Return to A1 when reopening

    Thanks Dave,
    The thing is, we've been having trouble with Macros, and they've been
    banned. I was hoping there was a tick-box somewhere in the settings or
    options.
    Aldo

    Dave Peterson wrote:

    > You can use a macro:
    >
    > Option Explicit
    > Sub Auto_Open()
    > application.goto worksheets(1).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
    >
    > Aldo wrote:
    > >
    > > I have a workbook containing 5 worksheets. It is edited by 30 people
    > > from a shared drive at work. How do I set it up so that when it is
    > > opened it always returns to cell A1 on the first sheet ( and not to the
    > > point of the last edit) so that I can ensure that users see any new
    > > data there ?

    >
    > --
    >
    > Dave Peterson



  4. #4
    Dave Peterson
    Guest

    Re: Return to A1 when reopening

    I think you'll have to select the cell before saving or use a macro.

    I don't know of any other way.

    Aldo wrote:
    >
    > Thanks Dave,
    > The thing is, we've been having trouble with Macros, and they've been
    > banned. I was hoping there was a tick-box somewhere in the settings or
    > options.
    > Aldo
    >
    > Dave Peterson wrote:
    >
    > > You can use a macro:
    > >
    > > Option Explicit
    > > Sub Auto_Open()
    > > application.goto worksheets(1).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
    > >
    > > Aldo wrote:
    > > >
    > > > I have a workbook containing 5 worksheets. It is edited by 30 people
    > > > from a shared drive at work. How do I set it up so that when it is
    > > > opened it always returns to cell A1 on the first sheet ( and not to the
    > > > point of the last edit) so that I can ensure that users see any new
    > > > data there ?

    > >
    > > --
    > >
    > > Dave Peterson


    --

    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