The above one liner was very useful ... since I am a beginner, I could not comment. So here is my option above, which takes each line in a worksheet and builds the URL from the value in the line.
CHGRow = 3 Worksheets("Page 1").Select Cells(CHGRow, 1).Select Do Until Application.CountA(ActiveCell.EntireRow) = 0 URLVal = "https://our_url_here?some_parameter=" & Cells(CHGRow, cNumber) URLText = Cells(CHGRow, cNumber) ActiveSheet.Hyperlinks.Add Anchor:=Cells(CHGRow, cURL), Address:=URLVal, TextToDisplay:=URLText CHGRow = CHGRow + 1 Cells(CHGRow, 1).Select Loop
source share