adding hyperlinks

J

john.9.williams

Hi,


I have code that inserts a hyperlink within a cell, then selects it,
but can I just insert the hyperlink within vba so the code just selects
the link,


my code at the moment is


Sheets("codes").Select
process = Range("b1")
Range("c1").Select
ActiveSheet.Hyperlinks.Add Anchor:=Selection,
Address:="outlook://Public Folders/All Public Folders/BT
plc/Networks/Network Build/Processes/eTASK Enabled Processes/~" &
process & ".doc"


Range("c1").Select
Selection.Hyperlinks(1).Follow NewWindow:=False, AddHistory:=True


As you can see i insert the link into cell c1 then select it, its this
bit i want to remove, any help would be great, i have heard of the
followhyperlink method but i am unsure of the syntax to use


Johny
 
J

Jake Marx

Hi Johnny,

You can use ThisWorkbook.FollowHyperlink to do it without creating a
hyperlink in the Workbook:

ThisWorkbook.FollowHyperlink "outlook://Public Folders/" & _
"All Public Folders/BT plc/Networks/Network Build/" & _
"Processes/eTASK Enabled Processes/~" & process & ".doc", _
, False, True

--
Regards,

Jake Marx
MS MVP - Excel
www.longhead.com

[please keep replies in the newsgroup - email address unmonitored]
 

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

Similar Threads

hyperlinks 1
Create Hyperlink in VBA 7
macro to open a document 6
Open folder with code 5
Macro to be used in any cell 1
Set Row as Variable... 2
Display Worksheet ASP page pop-up 5
Creating Loops and counters 5

Top