+ Reply to Thread
Results 1 to 4 of 4

make excel start in particular cell

Hybrid View

  1. #1
    Registered User
    Join Date
    05-11-2004
    Posts
    8

    make excel start in particular cell

    Hi, I have searched the site/forum and haven't managed to find an answer.

    Is it possible to get excel to start a spreadsheet in a particular cell?
    I have a workbook with a number of sheets, and I would like it to start on A1 in the first sheet everytime the file is used.This sheet has the instuctions on it for using the workbook.
    I can't find an option to do this anywhere, so do I need a macro??
    Bit of a beginner on the macro side.
    I'm using excel 97 if that makes any difference.
    Any help appreciated.
    Thanks
    FB

  2. #2
    Valued Forum Contributor
    Join Date
    06-16-2006
    Location
    Sydney, Australia
    MS-Off Ver
    2013 64bit
    Posts
    1,394
    Yes you need a macro, a simple one though

    sub auto_open()
    sheets("sheet1").select
    range("A1").select
    end sub

    Open VBA Alt F11

    In the top left hand window, find the name of your workbook, select it, then select Insert\Module.

    Paste the above code in the right hand window of your new module. Save it, and that's it. Make sure you change the name of the sheet above to the one you want.

    Matt
    Last edited by Mallycat; 12-01-2006 at 05:39 PM.

  3. #3
    Registered User
    Join Date
    05-11-2004
    Posts
    8
    Thank you Mallycat.
    That does exactly what I want.
    Need to get into this macro stuff I think.
    Thanks.
    Fermerboy

  4. #4
    Registered User
    Join Date
    11-30-2006
    Location
    Jacksonville
    Posts
    27
    fermer - That did not work. Mcat's solution should work. Just remember to change "sheet 1" to what ever the desired sheet is named.


    I also have the need and that macro works pretty good.

+ 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