+ Reply to Thread
Results 1 to 2 of 2

Navigating sheets together

Hybrid View

  1. #1
    Registered User
    Join Date
    02-03-2010
    Location
    Guilap
    MS-Off Ver
    SP
    Posts
    2

    Question Navigating sheets together

    Hi!

    I have one excel workbook with 3 spreadsheets, in which the left column represents a day of the current year, going from row 2 to 366/367 in the three sheets.

    Is there a way to make all 3 sheets navigate together? i.e., if I am on March 3rd in the first sheet on March 3rd, all other sheets will be positioned in March 3rd when I go to them (preferentially keeping the column they were).

    Thanks in advance!

  2. #2
    Registered User
    Join Date
    02-03-2010
    Location
    Guilap
    MS-Off Ver
    SP
    Posts
    2

    Re: Navigating sheets together

    Done!

    I don't know if it's the cleanest way, but works:

    Put this in the workbook vba code
    Public Last_Selected_Row As Long
    
    Private Sub Workbook_Open()
       Last_Selected_Row = 1
    End Sub
    And this for each worksheet
    Private Sub Worksheet_Activate()
      ActiveSheet.Cells(ActiveWorkbook.Last_Selected_Row, Selection.Column).Select
    End Sub
    
    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
      ActiveWorkbook.Last_Selected_Row = Target.Row
    End Sub

+ 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