Private Sub Worksheet_SelectionChange(ByVal Target As Range)
On Error GoTo Fin
If Target.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("A2:L32")) Is Nothing Then
If Target = "" Then Exit Sub
Range("N1:N1000").ClearContents
[N1] = Format(Target, "dddd dd mmm"): Ind = 2
Application.ScreenUpdating = False
Range("A2:L32").Interior.Color = xlNone
Target.Interior.Color = RGB(200, 255, 200)
With Sheets("bbd")
For L = 2 To .Range("A65500").End(xlUp).Row
If .Cells(L, "B") = Target Then
Cells(Ind, "N") = .Cells(L, "A")
Ind = Ind + 1
End If
Next L
End With
End If
Fin:
End Sub