Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim c1 As Range, c2 As Range
Cells.FormatConditions.Delete 'RAZ
Set c1 = Intersect(Selection, UsedRange, UsedRange.Columns(1).Offset(3))
Set c2 = Intersect(Selection, UsedRange, UsedRange.Rows(1).Offset(, 3))
If c1 Is Nothing Or c2 Is Nothing Then Exit Sub
If c1.Count * c2.Count > 1 Then Exit Sub
With Union(c1, c2, Intersect(c1.EntireRow, c2.EntireColumn))
.FormatConditions.Add xlExpression, Formula1:=1
.FormatConditions(1).Interior.ColorIndex = 8 'vert
End With
End Sub