A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Column = 9 Then
With Target.Columns(1)
.Offset(0, 13).Value = Date
.Offset(0, 14).Value = Time
End With
End If
If Target.Cells.Count > 1 Then Exit Sub
If Target.Column = 5 Then
Application.DisplayAlerts = False
ActiveWorkbook.FollowHyperlink Address:=Target.Value, NewWindow:=True
'ActiveWorkbook.FollowHyperlink Address:="http:\" & Target.Value, NewWindow:=True
Application.DisplayAlerts = True
End If
End Sub