ipbr21054
Well-known Member
- Joined
- Nov 16, 2010
- Messages
- 5,738
- Office Version
- 2007
- Platform
- Windows
Hi,
Basically when i open a specific worksheet i need two things to happen.
1,Select cell A4
2,Open Userform.
I can only do one of them using the Private Sub Worksheet_Activate()
I have this in use on another sheet which does the two actions BUT its written to select the bottom on my sheet where i now need the top selected
Can this be edited to achieve that please ?
Thanks
Basically when i open a specific worksheet i need two things to happen.
1,Select cell A4
2,Open Userform.
I can only do one of them using the Private Sub Worksheet_Activate()
I have this in use on another sheet which does the two actions BUT its written to select the bottom on my sheet where i now need the top selected
Can this be edited to achieve that please ?
Thanks
Code:
Private Sub Worksheet_Activate()Application.GoTo Sheets("SKP IMMO LIST").Range("A" & Rows.Count).End(xlUp).Offset(1, 0), True
ActiveWindow.SmallScroll UP:=10
SKPForm.Show
End Sub