A pivot table doesn't support hyperlinks.
You could use the SelectionChange event to follow a hyperlink on a
different worksheet. For example:
Private Sub Worksheet_SelectionChange _
(ByVal Target As Range)
If Target.Value = "Smith" Then
Sheets("Lists").Range("E4") _
.Hyperlinks(1).Follow
End If
End Sub