By using expertatexcel.com you agree to our cookie policy, We and our partners operate globally and use cookies, for multiple purposes

Become an Σxpert at Σxcel.com

 


Convert2link

I used this routine in a report that I had an id number and wanted to create a hyperlink for the report


Sub Convert2Link()
'Ctrl+Shift+C
'This will take a formula in a cell
' - Convert it to a value
' - Add a JIRA hyperlink

selection.Copy
Selection.PasteSpecial '.....
On Error Resume Next
Activesheet.Hyperlinks.Add Anchor:=Selection, Address:="https://jira.com/issues/browse/" & ActiveCell.Value, TextToDisplay:=ActiveCell.Value

End Sub