ipbr21054
Well-known Member
- Joined
- Nov 16, 2010
- Messages
- 5,731
- Office Version
- 2007
- Platform
- Windows
Ive had this before but searching old posts i was unable to find the answer.
I use the following code to select last row with value in column A
My issue is once im taken there i wish to use keyboard arrow to move up a cell or two but nothing happens.
Its as if its locked to that cell ??
I need to then select the cell.
Before the code advise did something that allowed me to use the keyboard arrows to move.
Can you advise please.
I use the following code to select last row with value in column A
My issue is once im taken there i wish to use keyboard arrow to move up a cell or two but nothing happens.
Its as if its locked to that cell ??
I need to then select the cell.
Before the code advise did something that allowed me to use the keyboard arrows to move.
Can you advise please.
VBA Code:
Private Sub BottomOfPage_Click()
Application.Goto Sheets("DATABASE").Range("A" & Rows.count).End(xlUp), True
ActiveWindow.SmallScroll UP:=11
End Sub