Shortcut to worksheet

  • Thread starter Thread starter selsley
  • Start date Start date
S

selsley

I'm trying to create a shortcut on the desktop to a particula
Worksheet. If I create a shortcut on the desktop to the Workbook an
right-click what do I type in "Target:"

Many thanks

Selsle
 
Selsley,

You can't. You can do a shortcut to a workbook, but not sheet.

What you could do is add a macro to the workbook that goes to your
worksheet, something like

Sub Auto_Open()
Worksheets("Sheet2").Activate
End Sub

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Many thanks for that Bob. I'm just a beginner! hope the weather at Pool
is fine today (not in Cheltenham)

Stev
 
No, it is damp and miserable.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Bob

Yes it works perfectly! Now to try out more macros.

Thanks again

Stev
 

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

Back
Top