Sub Convert2Link()'Ctrl+Shift+C'This will take a formula in a cell' - Convert it to a value' - Add a JIRA hyperlinkselection.CopySelection.PasteSpecial '.....On Error Resume Next Activesheet.Hyperlinks.Add Anchor:=Selection, Address:="https://jira.com/issues/browse/" & ActiveCell.Value, TextToDisplay:=ActiveCell.ValueEnd Sub