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
Shell Environ("WINDIR") & "\explorer.exe " & MonDossier, vbNormalFocus
End If
With Workbooks.Open("Listing impression").Sheets("liste impression")
With .Cells(.Rows.Count, 1).End(xlUp)(2)
Target.EntireRow.Copy .Cells
Application.Goto .Cells
End With
End With
End Sub