Hi,
I'm completely new to using macros/VBA. I've been already looking through several posts/forums/tutorials but so far I haven't succeeded. I've found similar posts, but I haven't managed to apply it to my case.
In Excel I've got a very long column (approx. 16000 cells) containing web addresses, I would like to convert all those into hyperlinks without having to do it one by one. (so that I can click on the cell and be directed to the webpage)
I've got the macro for one single cell but I would like to apply it to the entire column. Any help on how and where I need to place the loop will be GREATLY appreciated.
Sub hipervinculo()
ActiveSheet.Hyperlinks.Add anchor:=ActiveCell, Address:=ActiveCellValue, SubAddress:=""
End Sub
Thanks a lot!
I'm completely new to using macros/VBA. I've been already looking through several posts/forums/tutorials but so far I haven't succeeded. I've found similar posts, but I haven't managed to apply it to my case.
In Excel I've got a very long column (approx. 16000 cells) containing web addresses, I would like to convert all those into hyperlinks without having to do it one by one. (so that I can click on the cell and be directed to the webpage)
I've got the macro for one single cell but I would like to apply it to the entire column. Any help on how and where I need to place the loop will be GREATLY appreciated.
Sub hipervinculo()
ActiveSheet.Hyperlinks.Add anchor:=ActiveCell, Address:=ActiveCellValue, SubAddress:=""
End Sub
Thanks a lot!