Someone at the newsgroup asked this question. This is the VBScript that I wrote to accomplish this.
Dim objExcel Set objExcel = WScript.CreateObject("Excel.Application") objExcel.Visible = TRUE objExcel.Workbooks.Open "C:\\bintest.xls" objExcel.Workbooks(1).Activate objExcel.Workbooks(1).Worksheets(1).Range("A1").Select Dim sLinkAddress sLinkAddress = "http://www.google.com" objExcel.Workbooks(1).Worksheets(1).Hyperlinks.Add _ objExcel.Selection, sLinkAddress objExcel.Workbooks(1).SaveAs "C:\\bintest.xls" objExcel.Quit set objExcel = nothing
This post may contain affiliated links. When you click on the link and purchase a product, we receive a small commision to keep us running. Thanks.
hi,
I am trying to create a worksheet wherein you enter the web address of a site say ex: http://www.xyz.com and upon entering the value, the cell should display only “XYZ” and not the entire web address. Upon clicking that cell, it should take us to that site.
Can you please suggest some ways to do this?
Thanks …
Hkarthi,
I just tried it in Excel 2003. First, you enter http://www.xyz.com into the cell. Then, click on the cell, enter xyz again. Now, the cell shows only xyz but it links to http://www.xyz.com .
Peace people
We love you
hey wen i try to run the script it showing wrong number of arguments or invalid property assignment and error code is 800a01c2. plz help
The script is just an example. You can not just run it as it is. You need to modify it to suit your need.
hi,
i had tried to create hyperlink a doc file from excel sheet and it works fine