Private Sub Worksheet_BeforeDoubleClick(ByVal target As Range, Cancel As Boolean)
noligne = target.Row
If Not Intersect(target, Range("A:A")) Is Nothing Then
If target.Value = "" Then Exit Sub
Application.EnableEvents = False
Range("BB1") = target.Row
nom = target.Value
rep = ActiveWorkbook.Path & "\Archive-2021\"
Application.EnableEvents = True
Workbooks.Open rep & nom & ".xlsm"
End If
End Sub