+ Reply to Thread
Results 1 to 9 of 9

Page Scroll

Hybrid View

  1. #1
    Forum Contributor bengaluru's Avatar
    Join Date
    06-10-2005
    Location
    India
    MS-Off Ver
    Excel 2003
    Posts
    150

    Smile Page Scroll

    Hi,

    I have a spreadsheet with about 300 rows and columns up to AB. Is it possible to stop the page to scroll beyond the 300 rows and AB columns.

    Thanks
    Last edited by bengaluru; 06-09-2009 at 09:46 AM.

  2. #2
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: Page Scroll

    Either hide the rows and columns that are beyond your required area.

    Or set the ScrollArea property. On the Control Toolbox toolbar click the Properties icon. With the sheet selected specify the range in the ScrollArea property.
    Note this property will not be retained when the workbook is closed.
    Cheers
    Andy
    www.andypope.info

  3. #3
    Forum Expert dominicb's Avatar
    Join Date
    01-25-2005
    Location
    Lancashire, England
    MS-Off Ver
    MS Office 2000, 2003, 2007 & 2016 365
    Posts
    4,867

    Smile Re: Page Scroll

    Good afternoon bengaluru
    Quote Originally Posted by bengaluru View Post
    I have a spreadsheet with about 300 rows and columns up to AB. Is it possible to stop the page to scroll beyond the 300 rows and AB columns.
    To restate the ScrollArea property everytime the workbook is opened, use something like this :
    Private Sub Workbook_Open()
    Worksheets(1).ScrollArea = "A1:AB300"
    End Sub
    This needs to go in your ThisWorkbook module.

    HTH

    DominicB
    Please familiarise yourself with the rules before posting. You can find them here.

  4. #4
    Forum Contributor bengaluru's Avatar
    Join Date
    06-10-2005
    Location
    India
    MS-Off Ver
    Excel 2003
    Posts
    150

    Re: Page Scroll

    Thanks Andy Pope and dominicb. But unfortuantely the code does not work.

    Take care

  5. #5
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: Page Scroll

    Are you sure you placed the code in the Thisworkbook object?

    You will of couse need to run the routine before it takes affect. Either press F5 or simply save and re-open the workbook.

    And of course you will need to have macros enabled.

  6. #6
    Forum Contributor bengaluru's Avatar
    Join Date
    06-10-2005
    Location
    India
    MS-Off Ver
    Excel 2003
    Posts
    150

    Re: Page Scroll

    Thank you so much Stormseed for your prompt reply. Much appreciated. You have a great weekend.

  7. #7
    Registered User
    Join Date
    02-11-2009
    Location
    India
    MS-Off Ver
    Excel 2003
    Posts
    2

    Re: Page Scroll

    Dear Bengaluru,

    Just do the following and and your query is solved:

    Select range A1:AB300

    Click Menu Format>Cells
    Now Click "Protection" Tab and uncheck "Locked"

    Click Menu Tools>Protection>Protect Sheet

    New small window will open.

    Now uncheck "Select locked Cell" and enter the password in first box

    Click OK.

  8. #8
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: Page Scroll

    Simply pasting the code into the correct place will not affect the scroll area.

    You have to actually run the code. I suggested a way to execute the code as it would not be available via the Macros dialog.

    Granted once the workbook is saved and re-opened this will happen automatically.

  9. #9
    Forum Contributor bengaluru's Avatar
    Join Date
    06-10-2005
    Location
    India
    MS-Off Ver
    Excel 2003
    Posts
    150

    Re: Page Scroll

    Thanks Andy Pope and stormseed. Your help is much appreciated.

    Yes it now worked when I used the Object browser and located the ThisWorkBook_Open.

    How can I use the same if I have more than one sheet, because everytime the same ThisWorkBook_Open opens and gives me an error message if I use a different range.
    Last edited by bengaluru; 05-29-2009 at 12:52 PM. Reason: changes

+ 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