Doing a VBA for excel macro to Copy the Cell with Hyperlink(hyperlink to sheets in the workbook) to multiple cells with same active cell value in the workbook.
Tried this so far, could not copy the hyperlink with this.
Sub FindReplacewithHyperlink()
Dim sht As Worksheet
Dim fnd As Variant
Dim rplc As Variant
Dim oRng As Range
fnd = ActiveCell.Value
rplc = ActiveCell.Value
For Each sht In ActiveWorkbook.Worksheets
sht.Cells.Replace what:=fnd, Replacement:=rplc, _
LookAt:=xlPart, SearchOrder:=xlByRows, MatchCase:=False, _
SearchFormat:=False, ReplaceFormat:=False
Next sht
End Sub