Bonjour,

Je suis nouveau sur le forum et nouveau pour la programmation VBA. Je m'appelle Sylvain, j'ai 26ans et je viens du Canada. J'ai une bonne connaissance d'excel et de l'informatique en général, mais je suis débutant pour VBA.

Voila que mon travail m'amène à apprendre les macros sous excel. J'ai débuter une macro que j'ai emprunter de Ron's Bruin Excel Tips.

Je désire donc copier certaines feuilles de certains fichier .xlsx d'un répertoire. J'arrive à copier 1 seul onglet de mes fichiers. J'aimerais spécifier certains nom d'onglet de chaque fichier que je veux copier.

Voici donc mon code jusqu'à présent:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
 
Sub MergeDatatoDatabase()
    Dim MyPath As String, FilesInPath As String
    Dim MyFiles() As String
    Dim SourceRcount As Long, Fnum As Long
    Dim mybook As Workbook, BaseWks As Worksheet
    Dim sourceRange As Range, destrange As Range
    Dim rnum As Long, CalcMode As Long
    Dim FirstCell As String
 
    'Fill in the path\folder where the files are
    MyPath = "C:\Users\lsxfnq\Desktop\Test_Officiel_Phase2"
 
    'Add a slash at the end if the user forget it
    If Right(MyPath, 1) <> "\" Then
        MyPath = MyPath & "\"
    End If
 
    'If there are no Excel files in the folder exit the sub
    FilesInPath = Dir(MyPath & "*.xl*")
    If FilesInPath = "" Then
        MsgBox "No files found"
        Exit Sub
    End If
 
    'Fill the array(myFiles)with the list of Excel files in the folder
    Fnum = 0
    Do While FilesInPath <> ""
        Fnum = Fnum + 1
        ReDim Preserve MyFiles(1 To Fnum)
        MyFiles(Fnum) = FilesInPath
        FilesInPath = Dir()
    Loop
 
    'Change ScreenUpdating, Calculation and EnableEvents
    With Application
        CalcMode = .Calculation
        .Calculation = xlCalculationManual
        .ScreenUpdating = False
        .EnableEvents = False
    End With
 
    'Add a new workbook with one sheet
    Set BaseWks = Workbooks.Add(xlWBATWorksheet).Worksheets(1)
    rnum = 1
 
    'Loop through all files in the array(myFiles)
    If Fnum > 0 Then
        For Fnum = LBound(MyFiles) To UBound(MyFiles)
            Set mybook = Nothing
            On Error Resume Next
            Set mybook = Workbooks.Open(MyPath & MyFiles(Fnum), Password:="MYPASS", WriteResPassword:="MYPASS", UpdateLinks:=0)
            On Error GoTo 0
 
            If Not mybook Is Nothing Then
 
                On Error Resume Next
 
With mybook.Worksheets(1)
    FirstCell = "A1"
    Set sourceRange = .Range(FirstCell & ":" & RDB_Last(3, .Cells))
    'Test if the row of the last cell >= then the row of the FirstCell
    If RDB_Last(1, .Cells) < .Range(FirstCell).Row Then
         Set sourceRange = Nothing
    End If
End With
 
                If Err.Number > 0 Then
                    Err.Clear
                    Set sourceRange = Nothing
                Else
                    'if SourceRange use all columns then skip this file
                    If sourceRange.Columns.Count >= BaseWks.Columns.Count Then
                        Set sourceRange = Nothing
                    End If
                End If
                On Error GoTo 0
 
                If Not sourceRange Is Nothing Then
 
                    SourceRcount = sourceRange.Rows.Count
 
                    If rnum + SourceRcount >= BaseWks.Rows.Count Then
                        MsgBox "Sorry there are not enough rows in the sheet"
                        BaseWks.Columns.AutoFit
                        mybook.Close savechanges:=False
                        GoTo ExitTheSub
                    Else
 
                        'Copy the file name in column A
                        With sourceRange
                            BaseWks.Cells(rnum, "A"). _
                                    Resize(.Rows.Count).Value = MyFiles(Fnum)
                        End With
 
                        'Set the destrange
                        Set destrange = BaseWks.Range("B" & rnum)
 
                        'we copy the values from the sourceRange to the destrange
                        With sourceRange
                            Set destrange = destrange. _
                                            Resize(.Rows.Count, .Columns.Count)
                        End With
                        destrange.Value = sourceRange.Value
 
                        rnum = rnum + SourceRcount
                    End If
                End If
                mybook.Close savechanges:=False
            End If
 
        Next Fnum
        BaseWks.Columns.AutoFit
    End If
 
ExitTheSub:
    'Restore ScreenUpdating, Calculation and EnableEvents
    With Application
        .ScreenUpdating = True
        .EnableEvents = True
        .Calculation = CalcMode
    End With
End Sub
Le but ultime est de copier environ 3 feuilles par fichier dans un seul onglet. Par la suite je pourrai effacer toutes les rangées inutiles (titre, sous-titre, etc.) afin de créer plusieurs tableau croisé dynamique.

J'aimerais avoir un coup de main pour la première partie car je n'y arrive tout simplement pas pour le moment.

Toute aide serait apprécié. Je vous remercie!