Bonjour , j'ai trouvé un code de Jacky67 que je remercie ,( pour extraire le contenu d'un autre fichier dans un même dossier ), je cherche à extraire les contenus dans un autre répertoire .
Je vous remercie pour toutes aide .
j'ai essayé ceci mais j'arrive pas
ThisWorkbook.Path & "S:\dossier1\""nom" & Space(1) & [c2] & ".xlsx"
Je vous remercie pour toutes aide .
VB:
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address <> "$C$2" Then Exit Sub
If Target = "" Then Exit Sub
Application.EnableEvents = False: Application.ScreenUpdating = False
Range("a3:i" & Rows.Count).Clear
If Dir(ThisWorkbook.Path & "\nom" & Space(1) & [c2] & ".xlsx") <> "" Then
Workbooks.Open Filename:=ThisWorkbook.Path & "\nom" & Space(1) & [c2] & ".xlsx"
ActiveWorkbook.Sheets("feuil1").Range("a3:i" & ActiveWorkbook.Sheets("feuil1").Cells.Find("*", , , , xlByRows, xlPrevious).Row).Copy ThisWorkbook.Sheets("Planning").Range("a3")
ActiveWindow.Close
Else
MsgBox "nom" & Space(1) & [c2] & vbLf & "Classeur inexistant", vbInformation, "Information"
End If
Application.EnableEvents = True
End Sub
j'ai essayé ceci mais j'arrive pas
ThisWorkbook.Path & "S:\dossier1\""nom" & Space(1) & [c2] & ".xlsx"