Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Target.Column <> 12 Or Target.Row = 1 Then Exit Sub
Cancel = True
Dim fichier As Variant
fichier = Application.GetOpenFilename("Fichiers Excel(*.xlsx*),*.xlsx*")
If fichier = False Then Exit Sub
Dim Filamentpossible As String
MonDossier = "Z:\COMMUN_USINE\LISTINGS\Listing Impression 3D"
If Len(Dir(MonDossier, vbDirectory)) > 0 Then 'vérifie si le Dossier existe
Shell Environ("WINDIR") & "\explorer.exe " & MonDossier, vbNormalFocus
End If
With Workbooks.Open("Listing impression").Sheets("liste impression") 'ouvre le fichier choisi
With .Cells(.Rows.Count, 1).End(xlUp)(2) '1ère cellule vide
Target.EntireRow.Copy .Cells 'copier-coller
Application.Goto .Cells 'affiche la cellule
End With
End With
End Sub