Help with Hyperlinks

A

Ayo

I am trying to do something new here, I haven't worked extensively with
hyperlinks before and I am not sure if what I am trying to do is even
possible. So, here is a step by step description of my expectations:

1.) I have a ActiveX Label on my Worksheet

2.) I want to create an hyperlink in the "Click Event" of the Label that will:
i.) go to another worksheet
ii.) set the ScrollRow, and
iii.) set the ScrollArea
 
P

p45cal

something likePrivate Sub Label1_Click()
With ThisWorkbook.Sheets("Sheet1")
Application.Goto (.Range("D4"))
.ScrollArea = "C2:F7"
End With
ActiveWindow.ScrollRow = 3
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top