Select specific cell once worksheet opened

ipbr21054

Well-known Member
Joined
Nov 16, 2010
Messages
5,226
Office Version
  1. 2007
Platform
  1. Windows
Hi,

Im using the code below to open another workbook sheet then have the cell B51 selected but getting a compile error
Just using the FollowHyperlink line of code works fine but then im unable to select the cell in question

Rich (BB code):
Private Sub KDX2Folder_Click()
ActiveWorkbook.FollowHyperlink ("C:\Users\Ian\Desktop\REMOTES ETC\DR\EXCEL WORKSHEETS\CLONING-KDX2.xlsm")
With ("KDX2LIST")
Range("b51").Select
End With
End Sub
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Shouldn't it be:
VBA Code:
With Sheets("KDX2LIST")
 
Upvote 0
Hi,

If you mean like this below that then give me RTE 1004 Range class failed

Rich (BB code):
Private Sub KDX2Folder_Click()
ActiveWorkbook.FollowHyperlink ("C:\Users\Ian\Desktop\REMOTES ETC\DR\EXCEL WORKSHEETS\CLONING-KDX2.xlsm")
With Sheets("KDX2LIST")
Range("B51").Select
End With
End Sub
 
Upvote 0
Does this do what you want?

VBA Code:
Private Sub KDX2Folder_Click()
  ActiveWorkbook.FollowHyperlink ("C:\Users\Ian\Desktop\REMOTES ETC\DR\EXCEL WORKSHEETS\CLONING-KDX2.xlsm")
  Application.Goto Workbooks("CLONING-KDX2.xlsm").Worksheets("KDX2LIST").Range("B51"), True
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,215,197
Messages
6,123,585
Members
449,108
Latest member
rache47

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top