Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How can I create new hyperlink with VBA. The path I want to use is:
C:\Test\test.xls Thanks in advance. Maperalia |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
this will put it in cell a1 on sheet1
Sub test() With Worksheets("Sheet1") .Hyperlinks.Add .Range("A1"), "C:\Test\test.xls" End With End Sub -- Gary "maperalia" wrote in message ... How can I create new hyperlink with VBA. The path I want to use is: C:\Test\test.xls Thanks in advance. Maperalia |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Gary;
Thanks very much it is working perfectly. Maperalia "Gary Keramidas" wrote: this will put it in cell a1 on sheet1 Sub test() With Worksheets("Sheet1") .Hyperlinks.Add .Range("A1"), "C:\Test\test.xls" End With End Sub -- Gary "maperalia" wrote in message ... How can I create new hyperlink with VBA. The path I want to use is: C:\Test\test.xls Thanks in advance. Maperalia |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Need to create an automatic hyperlink | Excel Discussion (Misc queries) | |||
How do I create a hyperlink to a cell with the hyperlink function | Excel Worksheet Functions | |||
create a hyperlink in a comment box | Excel Discussion (Misc queries) | |||
How i can create hyperlink with email | Excel Programming | |||
How to create a hyperlink in a diagram? | Excel Discussion (Misc queries) |