Private Sub Worksheet_SelectionChange(ByVal R As Range)
With Shapes("Bulle narrative : rectangle à coins arrondis 1")
If Intersect(ActiveCell, Range("a2:a6")) Is Nothing Then .Visible = False: Exit Sub
.Left = ActiveCell.Offset(, 1).Left
.Top = ActiveCell.Top
.Visible = CStr([adresse]) <> ActiveCell.Address Or .Visible = False
ThisWorkbook.Names.Add "adresse", ActiveCell.Address 'repérage
Application.EnableEvents = False
[a1].Select
Application.EnableEvents = True
End With
End Sub