+ Reply to Thread
Results 1 to 2 of 2

Excel: How can I freeze some of a workbook

  1. #1
    Freeze unused cells
    Guest

    Excel: How can I freeze some of a workbook

    I am trying to freeze the unused cells so that I do not have to use the arrow
    keys at the end of the data.

  2. #2
    Gord Dibben
    Guest

    Re: Excel: How can I freeze some of a workbook

    Hiding the unused rows and columns then protecting the sheet is one method.

    Setting the scrollarea using VBA is another method.

    Note: Setting ScrollArea is good for that session only and only the
    activesheet. Has to be reset next time workbook is opened.

    Best to place the code into a WorkBook_Open Sub in ThisWorkbook module and
    specify which worksheet.

    Private Sub WorkBook_Open()
    Sheets("YourSheet").ScrollArea = "A1:M36"
    End Sub


    Gord Dibben Excel MVP

    On Tue, 15 Mar 2005 08:29:08 -0800, "Freeze unused cells" <Freeze unused
    cells@discussions.microsoft.com> wrote:

    >I am trying to freeze the unused cells so that I do not have to use the arrow
    >keys at the end of the data.



+ 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