Private Sub Worksheet_SelectionChange(ByVal Target As Range)
On Error GoTo Fin
With Cells
.Font.Color = vbBlack
.Font.Underline = xlUnderlineStyleNone
.Font.Bold = False
.Interior.Color = xlNone
End With
With Range(Target.Row & ":" & Target.Row)
.Font.Color = vbWhite
.Font.Underline = xlUnderlineStyleSingle
.Font.Bold = True
.Interior.Color = RGB(127, 127, 127)
End With
Fin:
End Sub