+ Reply to Thread
Results 1 to 2 of 2

Freezed Panes and CTRL+HOME

  1. #1
    Kevin McCartney
    Guest

    Freezed Panes and CTRL+HOME

    Hi TWIMC,

    On a workbook, if you have Frozen Panes and then you press CTRL+ HOME, the
    selected cell becomes the cell directly below where the intersection of the
    frozen panes.

    So the question is there a way to perform a CTRL+HOME in VBA code without
    using the dreaded Sendkeys?

    TIA
    KM

  2. #2
    keepITcool
    Guest

    Re: Freezed Panes and CTRL+HOME

    there may be other ways but this works:

    Sub Homing()
    With ActiveWindow.ActivePane
    .ScrollRow = 1
    .ScrollColumn = 1
    .VisibleRange(1).Activate
    End With
    End Sub




    --
    keepITcool
    | www.XLsupport.com | keepITcool chello nl | amsterdam


    Kevin McCartney wrote :

    > Hi TWIMC,
    >
    > On a workbook, if you have Frozen Panes and then you press CTRL+
    > HOME, the selected cell becomes the cell directly below where the
    > intersection of the frozen panes.
    >
    > So the question is there a way to perform a CTRL+HOME in VBA code
    > without using the dreaded Sendkeys?
    >
    > TIA
    > KM


+ 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