Hi excelactuary
Any chance of a sample workbook depicting your requirement.
Edit: Not to worry, see if this is what you require:
Option Explicit
Sub Title_hyperLink()
Dim rngTo As Range, rngFrom As Range
Dim lRow As Long
Dim i As Integer, j As Integer
Dim LinkText As String
Dim ws As Worksheet
Application.ScreenUpdating = False
Set ws = Sheets("Sheet1")
lRow = ws.Cells(Rows.Count, "A").End(xlUp).Row
With Sheets("Sheet1")
j = 10
For i = 1 To lRow
If Cells(i, 1).Value = "" Then
Set rngFrom = ws.Cells(i, 1).Offset(1, 0)
Set rngTo = ws.Cells(j, 14)
LinkText = ws.Cells(i, 1).Offset(1, 0).Text
rngFrom.Parent.Hyperlinks.Add Anchor:=rngTo, Address:="", _
SubAddress:="'" & rngTo.Parent.Name & "'!" & rngFrom.Address(), _
TextToDisplay:=LinkText
j = j + 1
End If
Next i
End With
Application.ScreenUpdating = False
End Sub
Bookmarks