IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Macros et VBA Excel Discussion :

l'indice n'appartient pas a la selection


Sujet :

Macros et VBA Excel

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre confirmé
    Inscrit en
    Avril 2006
    Messages
    181
    Détails du profil
    Informations forums :
    Inscription : Avril 2006
    Messages : 181
    Par défaut l'indice n'appartient pas a la selection
    Bonjour,

    bon, je vais au debut expliquer ce que je dois faire:
    j'ai un classeur ou il y'a deux feuilles:
    -planning absence:
    qui contient un calendrier pour chaque mois, ou pour chaque mois, y'a les colonnes svtes:
    A de G à AK
    liste des ressources les jours du mois
    ou pour chaque jour on note la periode d'absence (0.1-->1)
    -liste des ressources et activités:
    A C
    listes des ressources congés initiaux
    dans congés initiaux est incrementale, chaque qu'il y'a une absence pour cause de formation ou de maladie, on ajoute cette charge a la valeur deja existante dans cette colonne pour la ressource concernée.

    apres dans un autre emplacement, j'ai un repertoire (RMA) ou il y'a plusieurs classeurs (un classeur pour chaque ressource), chacun des ces classeurs contient une feuille excel:
    voila comment il est:
    B C de D à AH
    Type d'absence total absence les jours du mois
    ou chaque jour s'il y'a absence on note la durée (0.1 --> 1)

    j'ai fais le code suivant:

    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
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    Sub planning()
    '-----------------------------------------------------------------------------------------
    '                                Déclarations
    '-----------------------------------------------------------------------------------------
    Dim Fso As Scripting.FileSystemObject
    Dim SourceFolder As Scripting.Folder
    Dim FileItem As Scripting.File
    
    Dim Nchaine As String, Ndebut As String, Nfin As String
    Dim Mchaine As String, Mdebut As String, f1mois As String
    Dim name As String, namechemin As String
    Dim Repertoire As String
    Dim fPnom As String, fPnom1 As String, f1nom As String
    
    Dim DerLig1 As Long, Lig1 As Long
    Dim LigBo As Long, DerCel As Long, DerCel1 As Long
    Dim listeRH As Worksheet
    '-----------------------------------------------------------------------------------------
    '                                 Traitements
    '-----------------------------------------------------------------------------------------
    Repertoire = Worksheets("Plannings Absences").Range("AP" & 518).Value
    
    Set Fso = CreateObject("Scripting.FileSystemObject")
    Set SourceFolder = Fso.GetFolder(Repertoire)
    
    'Boucle sur tous les fichiers du répertoire
        For Each FileItem In SourceFolder.Files
        name = FileItem.name
        namechemin = Repertoire & FileItem.name
    
            'fnom renvoie le nom extrait du nom de fichier
            Nchaine = FileItem.name
            Ndebut = InStr(1, Nchaine, " ", vbTextCompare) + 1
            Nfin = InStr(1, Nchaine, "_", vbTextCompare)
            f1nom = Mid(Nchaine, Ndebut, Nfin - Ndebut)
                    
            'fmois renvoie le mois extrait du nom du fichier
            Mchaine = FileItem.name
            Mdebut = Right(Mchaine, 9)
            f1mois = Mid(Mdebut, 1, 2)
            
            
            'rendre les mois en nombre en alphabet
            If f1mois = "10" Then
                f1mois = "Octobre"
            End If
                                                                        
            With Sheets("Plannings Absences")
                        
                For Lig1 = 517 To 553
                
                    'fPnom renvois le nom dans la feuille planning
                    Pchaine = .Range("A" & Lig1).Value
                    Pdebut = InStr(1, Pchaine, " ", vbTextCompare)
                    fPnom1 = Mid(Pchaine, 1, Pdebut)
                    fPnom = Replace(fPnom1, " ", "")
                    
                    'Workbooks.Open (namechemin)
                    If f1nom = fPnom Then
                    
                        Workbooks.Open (namechemin)
                        
                        'tester sur la formation (Trainning)
                        colT = 3
                        col2T = 7
                        LigRH = 16
                        
                        If Workbooks(name).Worksheets("feuil1").Cells(14, colT).Value <> "0" And Workbooks(name).Worksheets("feuil1").Cells(14, colT).Value <> "" Then
                            For col1T = 4 To 34
                                If Workbooks(name).Worksheets("feuil1").Cells(14, col1T).Value <> "" Then
                                    .Cells(Lig1, col2T).Value = Workbooks(name).Worksheets("feuil1").Cells(14, col1T).Value
                                    Set listeRH = Sheets("Liste des ressources & Activité")
                                    listeRH.Cells(LigRH, 3).Value = (listeRH.Cells(LigRH, 3).Value) + (Workbooks(name).Worksheets("feuil1").Cells(14, col1T).Value)
                                    col2T = col2T + 1
                                    LigRH = LigRH + 1
                                        Else
                                            col2T = col2T + 1
                                            LigRH = LigRH + 1
                                End If
                            Next col1T
                            Else
                        End If
                        
                        'tester sur technique
                        colTech = 3
                        col2Tech = 7
                        
                        If Workbooks(name).Worksheets("feuil1").Cells(15, colTech).Value <> "0" And Workbooks(name).Worksheets("feuil1").Cells(15, colTech).Value <> "" Then
                            For col1Tech = 4 To 34
                                If Workbooks(name).Worksheets("feuil1").Cells(15, col1Tech).Value <> "" Then
                                    .Cells(Lig1, col2Tech).Value = Workbooks(name).Worksheets("feuil1").Cells(15, col1Tech).Value
                                    col2Tech = col2Tech + 1
                                        Else
                                            col2Tech = col2Tech + 1
                                End If
                            Next col1Tech
                            Else
                        End If
                        
                        'tester sur CMMI
                        colCMMI = 3
                        col2CMMI = 7
                        
                        If Workbooks(name).Worksheets("feuil1").Cells(16, colCMMI).Value <> "0" And Workbooks(name).Worksheets("feuil1").Cells(16, colCMMI).Value <> "" Then
                            For col1CMMI = 4 To 34
                                If Workbooks(name).Worksheets("feuil1").Cells(16, col1CMMI).Value <> "" Then
                                    .Cells(Lig1, col2CMMI).Value = Workbooks(name).Worksheets("feuil1").Cells(16, col1CMMI).Value
                                    col2CMMI = col2CMMI + 1
                                        Else
                                            col2CMMI = col2CMMI + 1
                                End If
                            Next col1CMMI
                            Else
                        End If
                        
                        'tester sur Secretariat
                        colS = 3
                        col2S = 7
                        
                        If Workbooks(name).Worksheets("feuil1").Cells(17, colS).Value <> "0" And Workbooks(name).Worksheets("feuil1").Cells(17, colS).Value <> "" Then
                            For col1S = 4 To 34
                                If Workbooks(name).Worksheets("feuil1").Cells(17, col1S).Value <> "" Then
                                    .Cells(Lig1, col2S).Value = Workbooks(name).Worksheets("feuil1").Cells(17, col1S).Value
                                    col2S = col2S + 1
                                        Else
                                            col2S = col2S + 1
                                End If
                            Next col1S
                            Else
                        End If
                        
                        'tester sur Gestion
                        colG = 3
                        col2G = 7
                        
                        If Workbooks(name).Worksheets("feuil1").Cells(18, colG).Value <> "0" And Workbooks(name).Worksheets("feuil1").Cells(18, colG).Value <> "" Then
                            For col1G = 4 To 34
                                If Workbooks(name).Worksheets("feuil1").Cells(18, col1G).Value <> "" Then
                                    .Cells(Lig1, col2G).Value = Workbooks(name).Worksheets("feuil1").Cells(18, col1G).Value
                                    col2G = col2G + 1
                                        Else
                                            col2G = col2G + 1
                                End If
                            Next col1G
                            Else
                        End If
                        
                        'tester sur RH
                        colRH = 3
                        col2RH = 7
                        
                        If Workbooks(name).Worksheets("feuil1").Cells(19, colRH).Value <> "0" And Workbooks(name).Worksheets("feuil1").Cells(19, colRH).Value <> "" Then
                            For col1RH = 4 To 34
                                If Workbooks(name).Worksheets("feuil1").Cells(19, col1RH).Value <> "" Then
                                    .Cells(Lig1, col2RH).Value = Workbooks(name).Worksheets("feuil1").Cells(19, col1RH).Value
                                    col2RH = col2RH + 1
                                        Else
                                            col2RH = col2RH + 1
                                End If
                            Next col1RH
                            Else
                        End If
                        
                        'tester sur GSD
                        colGSD = 3
                        col2GSD = 7
                        
                        If Workbooks(name).Worksheets("feuil1").Cells(20, colGSD).Value <> "0" And Workbooks(name).Worksheets("feuil1").Cells(20, colGSD).Value <> "" Then
                            For col1GSD = 4 To 34
                                If Workbooks(name).Worksheets("feuil1").Cells(20, col1GSD).Value <> "" Then
                                    .Cells(Lig1, col2GSD).Value = Workbooks(name).Worksheets("feuil1").Cells(20, col1GSD).Value
                                    col2GSD = col2GSD + 1
                                        Else
                                            col2GSD = col2GSD + 1
                                End If
                            Next col1GSD
                            Else
                        End If
                        
                        'tester sur Stage
                        colSTG = 3
                        col2STG = 7
                        
                        If Workbooks(name).Worksheets("feuil1").Cells(21, colSTG).Value <> "0" And Workbooks(name).Worksheets("feuil1").Cells(21, colSTG).Value <> "" Then
                            For col1STG = 4 To 34
                                If Workbooks(name).Worksheets("feuil1").Cells(21, col1STG).Value <> "" Then
                                    .Cells(Lig1, col2STG).Value = Workbooks(name).Worksheets("feuil1").Cells(21, col1STG).Value
                                    col2STG = col2STG + 1
                                        Else
                                            col2STG = col2STG + 1
                                End If
                            Next col1STG
                            Else
                        End If
                        
                        'tester sur Recrutement
                        colR = 3
                        col2R = 7
                        
                        If Workbooks(name).Worksheets("feuil1").Cells(22, colR).Value <> "0" And Workbooks(name).Worksheets("feuil1").Cells(22, colR).Value <> "" Then
                            For col1R = 4 To 34
                                If Workbooks(name).Worksheets("feuil1").Cells(22, col1R).Value <> "" Then
                                    .Cells(Lig1, col2R).Value = Workbooks(name).Worksheets("feuil1").Cells(22, col1R).Value
                                    col2R = col2R + 1
                                        Else
                                            col2R = col2R + 1
                                End If
                            Next col1R
                            Else
                        End If
                        
                        'tester sur Business
                        colB = 3
                        col2B = 7
                        
                        If Workbooks(name).Worksheets("feuil1").Cells(23, colB).Value <> "0" And Workbooks(name).Worksheets("feuil1").Cells(23, colB).Value <> "" Then
                            For col1B = 4 To 34
                                If Workbooks(name).Worksheets("feuil1").Cells(23, col1B).Value <> "" Then
                                    .Cells(Lig1, col2B).Value = Workbooks(name).Worksheets("feuil1").Cells(23, col1B).Value
                                    col2B = col2B + 1
                                        Else
                                            col2B = col2B + 1
                                End If
                            Next col1B
                            Else
                        End If
                        
                        'tester sur Congé Payé
                        colCP = 3
                        col2CP = 7
                        
                        If Workbooks(name).Worksheets("feuil1").Cells(24, colCP).Value <> "0" And Workbooks(name).Worksheets("feuil1").Cells(24, colCP).Value <> "" Then
                            For col1CP = 4 To 34
                                If Workbooks(name).Worksheets("feuil1").Cells(24, col1CP).Value <> "" Then
                                    .Cells(Lig1, col2CP).Value = Workbooks(name).Worksheets("feuil1").Cells(24, col1CP).Value
                                    col2CP = col2CP + 1
                                        Else
                                            col2CP = col2CP + 1
                                End If
                            Next col1CP
                            Else
                        End If
                        
                        'tester sur Congé Non Payé
                        colCNP = 3
                        col2CNP = 7
                        
                        If Workbooks(name).Worksheets("feuil1").Cells(25, colCNP).Value <> "0" And Workbooks(name).Worksheets("feuil1").Cells(25, colCNP).Value <> "" Then
                            For col1CNP = 4 To 34
                                If Workbooks(name).Worksheets("feuil1").Cells(25, col1CNP).Value <> "" Then
                                    .Cells(Lig1, col2CNP).Value = Workbooks(name).Worksheets("feuil1").Cells(25, col1CNP).Value
                                    col2CNP = col2CNP + 1
                                        Else
                                            col2CNP = col2CNP + 1
                                End If
                            Next col1CNP
                            Else
                        End If
                        
                        'tester sur Congé Exceptionnel
                        colCE = 3
                        col2CE = 7
                        
                        If Workbooks(name).Worksheets("feuil1").Cells(26, colCE).Value <> "0" And Workbooks(name).Worksheets("feuil1").Cells(26, colCE).Value <> "" Then
                            For col1CE = 4 To 34
                                If Workbooks(name).Worksheets("feuil1").Cells(26, col1CE).Value <> "" Then
                                    .Cells(Lig1, col2CE).Value = Workbooks(name).Worksheets("feuil1").Cells(26, col1CE).Value
                                    col2CE = col2CE + 1
                                        Else
                                            col2CE = col2CE + 1
                                End If
                            Next col1CE
                            Else
                        End If
                        
                        'tester sur Congé de Matérnité
                        colCM = 3
                        col2CM = 7
                        
                        If Workbooks(name).Worksheets("feuil1").Cells(27, colCM).Value <> "0" And Workbooks(name).Worksheets("feuil1").Cells(27, colCM).Value <> "" Then
                            For col1CM = 4 To 34
                                If Workbooks(name).Worksheets("feuil1").Cells(27, col1CM).Value <> "" Then
                                    .Cells(Lig1, col2CM).Value = Workbooks(name).Worksheets("feuil1").Cells(27, col1CM).Value
                                    col2CM = col2CM + 1
                                        Else
                                            col2CM = col2CM + 1
                                End If
                            Next col1CM
                            Else
                        End If
                        
                        'tester sur la maladie
                        colMa = 3
                        col2Ma = 7
                        
                        If Workbooks(name).Worksheets("feuil1").Cells(28, colMa).Value <> "0" And Workbooks(name).Worksheets("feuil1").Cells(28, colMa).Value <> "" Then
                            For col1Ma = 4 To 34
                                If Workbooks(name).Worksheets("feuil1").Cells(28, col1Ma).Value <> "" Then
                                    .Cells(Lig1, col2Ma).Value = Workbooks(name).Worksheets("feuil1").Cells(28, col1Ma).Value
                                    col2Ma = col2Ma + 1
                                        Else
                                            col2Ma = col2Ma + 1
                                End If
                            Next col1Ma
                            Else
                        End If
                                
                        Workbooks(name).Close SaveChanges:=False                           
                    End If               
                Next Lig1            
            End With               
        Next FileItem
    End Sub
    le probleme c quand j'ajoute la ligne en rouge, qui sert a incrementer les congés initiaux dans la feuille "listes des ressources" dans le cas de formation et maladie, j'ai ll'erreur suivante (l'indice n'appartient pas à la selection), est ce que vous pouvez me dire c'est du a quoi?

    Merci a vous

  2. #2
    Membre confirmé
    Inscrit en
    Avril 2006
    Messages
    181
    Détails du profil
    Informations forums :
    Inscription : Avril 2006
    Messages : 181
    Par défaut
    bon , pour ceux qui ont le meme probleme, la solution est de faire sortir le set en dehors du for et du with
    merci a ceux qui ont pensé a mon probleme

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Erreur : l'indice n'appartient pas a la selection
    Par tamtam64 dans le forum Macros et VBA Excel
    Réponses: 2
    Dernier message: 22/04/2015, 09h47
  2. [XL-2003] Erreur '0' : l'indice n'appartient pas à la selection
    Par Benjycool dans le forum Macros et VBA Excel
    Réponses: 2
    Dernier message: 29/04/2010, 16h51
  3. Erreur d'execution '9'. L'indice n'appartient pas à la selection
    Par goby45 dans le forum Macros et VBA Excel
    Réponses: 4
    Dernier message: 26/02/2010, 16h09
  4. L'indice n'appartient pas à la selection (Close)
    Par Elijah37 dans le forum Macros et VBA Excel
    Réponses: 8
    Dernier message: 31/07/2008, 15h37
  5. l indice n appartient pas a la selection
    Par manphenix dans le forum Macros et VBA Excel
    Réponses: 11
    Dernier message: 21/07/2008, 09h36

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo