Results 1 to 4 of 4

Open excel sheet at last row - 5

Threaded View

  1. #1
    Registered User
    Join Date
    03-30-2016
    Location
    Manchester
    MS-Off Ver
    2013
    Posts
    93

    Open excel sheet at last row - 5

    I'm using the following code to open worksheets in a spreadsheet used by a large number of people so that they don't have to trawl through row after row of data when opening the workbook.

    Private Sub Worksheet_Activate()
    Dim lr As Long, scrlrw As Long
        
        With ActiveSheet
            lr = .Range("A" & .Rows.Count).End(xlUp).Row
            scrlrw = IIf(lr > 10, lr - 10, 1)
            Application.Goto Reference:=.Range("A" & lr - 5)
            ActiveWindow.ScrollRow = scrlrw
        End With
         End Sub
    With some of the sheets the lastrow -5 (the selected row) is in the middle of the screen. On some sheets it's the last visible row when then sheet is opened.

    It seems to make no difference how many rows have been filled.

    Is there a way to ensure that the selected row is shown as the top row in the window? (except where this is not possible as there are less that 5 rows of data.

    For information, the top row (row 1) is a freeze pane with a row height of approx 45.

    Thanks in advance.
    Last edited by dori2o; 12-01-2017 at 10:54 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 2
    Last Post: 11-20-2017, 03:32 PM
  2. How To Open an Macro From 2003 Excel in 2013 Excel Spread Sheet?
    By ADubin in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 01-24-2015, 09:22 PM
  3. Replies: 1
    Last Post: 11-28-2014, 06:28 AM
  4. Replies: 56
    Last Post: 09-08-2014, 06:54 AM
  5. Populate Excel Userform with Sheet names with double click to open the sheet ??
    By Shacker in forum Excel Programming / VBA / Macros
    Replies: 13
    Last Post: 05-08-2013, 03:54 PM
  6. Import another excel Paste data in Current open excel sheet
    By shiva_reshs in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 08-28-2012, 09:47 AM
  7. Copy from open excel sheet and paste into close excel sheet
    By rizmomin in forum Excel Programming / VBA / Macros
    Replies: 15
    Last Post: 11-13-2010, 06:07 PM

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