Bonjour grâce a ces lignes de code je peux créer un répertoire et mon fichier
Mais comment puis je enregistrer automatiquement le fichier dans ce répertoire ?
merci de votre aide
Sub enregistrer()
Worksheets("PLC").Select
Répertoire = ThisWorkbook.Path & "\" & Cells(19, 1) & " - " & Cells(19, 4) & " " & Cells(19, 7) & " - " & Cells(2, 4) & " - " & Cells(24, 13).Value
If Dir(Répertoire, vbDirectory) = "" Then MkDir Répertoire
MsgBox Répertoire
ActiveSheet.SaveAs Filename:=ThisWorkbook.Path & "\" & "PL " & Cells(1, 6) & " " & Cells(19, 1) & " - " & Cells(2, 4) & " - " & Cells(3, 4).Value
Worksheets("Sommaire").Select
End Sub
Mais comment puis je enregistrer automatiquement le fichier dans ce répertoire ?
merci de votre aide
Sub enregistrer()
Worksheets("PLC").Select
Répertoire = ThisWorkbook.Path & "\" & Cells(19, 1) & " - " & Cells(19, 4) & " " & Cells(19, 7) & " - " & Cells(2, 4) & " - " & Cells(24, 13).Value
If Dir(Répertoire, vbDirectory) = "" Then MkDir Répertoire
MsgBox Répertoire
ActiveSheet.SaveAs Filename:=ThisWorkbook.Path & "\" & "PL " & Cells(1, 6) & " " & Cells(19, 1) & " - " & Cells(2, 4) & " - " & Cells(3, 4).Value
Worksheets("Sommaire").Select
End Sub
Dernière édition: