![]() |
hyperlink question
I have a list of various hyperlinks in an excel worksheet (cells a1-a...). I
would like to retreieve the actual addresses of these hyperlinks and display them next to the addresses in column b (cells b1-b...). Does anyone know if this is possible. Thank You. |
hyperlink question
Am I oversimplifying something? How about clicking on each link, which would
take you to the actual address? You could then copy and paste the address (url or e-mail) back into your spreadsheet. "hartjezt" wrote in message ... I have a list of various hyperlinks in an excel worksheet (cells a1-a...). I would like to retreieve the actual addresses of these hyperlinks and display them next to the addresses in column b (cells b1-b...). Does anyone know if this is possible. Thank You. |
hyperlink question
Hello hartjezt, Here is macro to do just that. Add a VBA module to project and copy this code into it. Sub ShowAddresses() Dim HyperLnk For Each HyperLnk In ActiveSheet.Hyperlinks HyperLnk.Range.Offset(0, 1).Value = HyperLnk.Address Next HyperLnk End Sub Sincerely, Leith Ross -- Leith Ross ------------------------------------------------------------------------ Leith Ross's Profile: http://www.excelforum.com/member.php...o&userid=18465 View this thread: http://www.excelforum.com/showthread...hreadid=504593 |
All times are GMT +1. The time now is 08:58 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com