Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello Everyone,
Can anyone help me find a solution to the following problem: I have a spreadsheet with a single column of hundreds of normal text web addresses (i.e. http://www.microsoft.com). Is there an easy way (a macro??) that will take each address in each cell and convert it into an actual hyperlink? I know I could do it individually, but with the number of addresses we have it would take forever. Thanks very, very, much. -neil |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Test this one for column A
Sub test() For Each myCell In Columns("A").Cells.SpecialCells(xlCellTypeConstant s) ActiveSheet.Hyperlinks.Add Anchor:=myCell, _ Address:=myCell.Value, TextToDisplay:=myCell.Value Next End Sub -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "NeilPSargent" wrote in message ... Hello Everyone, Can anyone help me find a solution to the following problem: I have a spreadsheet with a single column of hundreds of normal text web addresses (i.e. http://www.microsoft.com). Is there an easy way (a macro??) that will take each address in each cell and convert it into an actual hyperlink? I know I could do it individually, but with the number of addresses we have it would take forever. Thanks very, very, much. -neil |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
What do you see when you hover your mouse on http://www.microsoft.com
-- Don Guillett Microsoft MVP Excel SalesAid Software "NeilPSargent" wrote in message ... Hello Everyone, Can anyone help me find a solution to the following problem: I have a spreadsheet with a single column of hundreds of normal text web addresses (i.e. http://www.microsoft.com). Is there an easy way (a macro??) that will take each address in each cell and convert it into an actual hyperlink? I know I could do it individually, but with the number of addresses we have it would take forever. Thanks very, very, much. -neil |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Ron, that worked perfectly! Thank you so very much!
"Ron de Bruin" wrote: Test this one for column A Sub test() For Each myCell In Columns("A").Cells.SpecialCells(xlCellTypeConstant s) ActiveSheet.Hyperlinks.Add Anchor:=myCell, _ Address:=myCell.Value, TextToDisplay:=myCell.Value Next End Sub -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "NeilPSargent" wrote in message ... Hello Everyone, Can anyone help me find a solution to the following problem: I have a spreadsheet with a single column of hundreds of normal text web addresses (i.e. http://www.microsoft.com). Is there an easy way (a macro??) that will take each address in each cell and convert it into an actual hyperlink? I know I could do it individually, but with the number of addresses we have it would take forever. Thanks very, very, much. -neil |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Viewing email addresses that are formatted as hyperlinks | Excel Discussion (Misc queries) | |||
convert column of text email addresses to hyperlinks all at once | Excel Worksheet Functions | |||
Hyperlinks and Email Addresses in Excel | Excel Worksheet Functions | |||
Extracting email addresses from hyperlinks. | Excel Discussion (Misc queries) | |||
Convert entire columns of text email addresses to hyperlinks | Excel Worksheet Functions |