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 :

Process trop long pour parcourir mailbox dans Outlook


Sujet :

Macros et VBA Excel

  1. #1
    Membre régulier
    Homme Profil pro
    Étudiant
    Inscrit en
    Novembre 2015
    Messages
    184
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Aube (Champagne Ardenne)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Novembre 2015
    Messages : 184
    Points : 83
    Points
    83
    Par défaut Process trop long pour parcourir mailbox dans Outlook
    Bonjour à tous,

    J'ai créé un programme pour parcourir tous les mails dans mon mailbox et compter les mails reçus, envoyés etc. Il fonctionne bien.

    Le problème est que chaque fois il prend trop de temps.

    Je voudrais donc vous demander de m'aider voir s'il est possible d'être simplifié.

    Merci par avance.

    Pièce jointe 241848

  2. #2
    Expert éminent

    Homme Profil pro
    Curieux
    Inscrit en
    Juillet 2012
    Messages
    5 138
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Curieux
    Secteur : Arts - Culture

    Informations forums :
    Inscription : Juillet 2012
    Messages : 5 138
    Points : 9 972
    Points
    9 972
    Billets dans le blog
    5
    Par défaut
    Bonjour,

    un code qui utilises le modèle objet Outlook, bien que manipulé par automation via Excel, a plutôt sa place dans le forum Outlook VBA

    cependant, peux-tu nous montrer le code que tu utilises ?
    et nous décrire un peu plus précisément ce que tu extraits, comment tu définis les dossiers à analyser etc...

    bref, un peu de soin dans la présentation, car ton classeur ne sera pas ouvert par beaucoup de monde

  3. #3
    Membre régulier
    Homme Profil pro
    Étudiant
    Inscrit en
    Novembre 2015
    Messages
    184
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Aube (Champagne Ardenne)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Novembre 2015
    Messages : 184
    Points : 83
    Points
    83
    Par défaut
    Bonjour,

    Merci pour m'avoir répondu et pour votre conseil. Le but de mon programme est d'aller dans le mailbox avec Outlook et compter le nombre de mails reçus, envoyés, non-catégorisés etc. Il répertorie et inscrit les mails dans différentes feuilles d'un classeur également.

    Vous pouvez voir que j'ai déjà fait des simplifications pour accélérer le process. Cependant, il fonctionne toujours trop lentement.

    Voici le code :
    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
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
        Option Explicit
        Public dd As Date, df As Date
        Public dateFiltre As Date
        Dim i As Long
        Dim MailBoxName As String
        Dim OlApp As Object
        Dim olFolder As Outlook.Folder
        Dim myNamespace As Outlook.Namespace
        Dim cellDate As Range
        Dim cellStatus As Range
        Dim cellObject As Range
        Dim cellDossier As Range
        Dim cellCategory As Range
        Dim cellCC As Range
        Dim cellHour As Range
        Dim cellExp As Range
        Dim cellRecept As Range
        Dim cellReadNotRead As Range
        Dim cc As Long
        Dim ch As Long
        Dim ce As Long
        Dim cr As Long
        Dim crnr As Long
        Dim cd As Long
        Dim cs As Long
        Dim co As Long
        Dim ccat As Long
        Dim cdir As Long
        Dim nbLines As Long
        Dim nbColumns As Long
        Dim col As String
        Dim nbRecu As Long
        Dim nbSent As Long
        Dim nbNoCat As Long
        Dim nbNoCatOld As Long
        Dim nbUnRead As Long
        Dim inbox As Boolean
        Dim env As Boolean
        Dim del As Boolean
        Dim minDate As String
        Dim jour As String
        Dim mois As String
        Dim annee As String
     
     
        'deux macros pour accelerer l execution de la macro principale:ini_sub et fin_sub
        Public Sub ini_sub()
            Application.ScreenUpdating = False 'rafraichissement ecran (pour ne pas voir défiler les macros)
           Application.Calculation = xlCalculationManual ' supprime calcul auto EXCEL pour gagner du temps.  A remettre dans fin_sub
           Application.DisplayStatusBar = False
            Application.EnableEvents = False
            ActiveSheet.DisplayPageBreaks = False
        End Sub
        Public Sub fin_sub()
            Application.ScreenUpdating = True 'rafrfraichissement ecran
           Application.Calculation = xlCalculationAutomatic
            Application.DisplayStatusBar = True
            Application.EnableEvents = True
            ActiveSheet.DisplayPageBreaks = True
        End Sub
     
        Function LettreColonne(c As Long) As String
     
        Dim reste As Long
        Dim quotient As Long
     
        quotient = Int(c / 26)
        reste = c Mod 26
     
        If quotient = 0 And reste = 0 Then
            Exit Function
        End If
        If quotient = 0 Then
            LettreColonne = Chr(64 + reste)
        Else
            If reste = 0 Then
                quotient = quotient - 1
                If quotient = 0 Then
                    LettreColonne = Chr(64 + 26)
                Else
                    LettreColonne = Chr(64 + quotient) & Chr(64 + 26)
                End If
            Else
                LettreColonne = Chr(64 + quotient) & Chr(64 + reste)
            End If
        End If
     
        End Function
     
        Sub Sous_Dossier(olFolder As Outlook.Folder, dd As Date, df As Date)
     
        Dim Folder As Outlook.Folder
        Dim olFldr As Outlook.Folder
        Dim sourceFolder As Outlook.Folder
        Dim msg As Outlook.MailItem
        Dim it As Outlook.Items
        Dim j As Long
        Dim dateR As Date
        Dim d As Date
     
        j = 1
     
        For Each Folder In olFolder.Folders
            If Not Folder Is Nothing Then
                'appel à la macro dossier
               dossier Folder
            Else
                Exit Sub
            End If
        Next Folder
     
        End Sub
     
        Sub dossier(olFolder As Outlook.Folder)
     
        Dim Folder As Outlook.Folder
        Dim msg As Outlook.MailItem
        Dim j As Long
        Dim dateR As Date
        Dim d As Date
        Dim h As Date
        Dim NumeroJour As Integer
        Dim nomDos As String
        Dim s As Boolean
     
        '''''''''''''''''''
        Dim cellCC As Range
        Dim cellHour As Range
        Dim cellExp As Range
        Dim cellRecept As Range
        Dim cellReadNotRead As Range
        Dim cc As Long
        Dim ch As Long
        Dim ce As Long
        Dim cr As Long
        Dim crnr As Long
        '''''''''''''''''''''''''''
        j = 1
        Set cellCC = ThisWorkbook.Worksheets("MAIN").Cells.Find("CC", lookat:=xlWhole)
        cc = cellCC.Column
        Set cellHour = ThisWorkbook.Worksheets("MAIN").Cells.Find("HOUR", lookat:=xlWhole)
        ch = cellHour.Column
        Set cellExp = ThisWorkbook.Worksheets("MAIN").Cells.Find("SENDER", lookat:=xlWhole)
        ce = cellExp.Column
        Set cellRecept = ThisWorkbook.Worksheets("MAIN").Cells.Find("RECEIVER", lookat:=xlWhole)
        cr = cellRecept.Column
        Set cellReadNotRead = ThisWorkbook.Worksheets("MAIN").Cells.Find("READ\NOTREAD", lookat:=xlWhole)
        crnr = cellReadNotRead.Column
        Set cellDate = ThisWorkbook.Worksheets("MAIN").Cells.Find("DATE", lookat:=xlWhole)
        cd = cellDate.Column
        Set cellDossier = ThisWorkbook.Worksheets("MAIN").Cells.Find("DOSSIER", lookat:=xlWhole)
        cdir = cellDossier.Column
        Set cellStatus = ThisWorkbook.Worksheets("MAIN").Cells.Find("STATUS", lookat:=xlWhole)
        cs = cellStatus.Column
        Set cellObject = ThisWorkbook.Worksheets("MAIN").Cells.Find("SUBJECT", lookat:=xlWhole)
        co = cellObject.Column
        Set cellCategory = ThisWorkbook.Worksheets("MAIN").Cells.Find("CATEGORY", lookat:=xlWhole)
        ccat = cellCategory.Column
     
        If olFolder.Items.Count > 0 Then
                Do While True
                    If TypeOf olFolder.Items(j) Is MailItem Then
     
                        Set msg = olFolder.Items(j)
                        dateR = msg.ReceivedTime
                        d = Format(dateR, "dd/mm/yyyy")
                        h = Format(dateR, "hh:mm")
                        NumeroJour = Weekday(d, vbMonday)
                        'filtrer les mails ne pas afficher ceux reçus samedi ou dimanche
                       If d > dd And d < df And NumeroJour <> 6 And NumeroJour <> 7 Then
                            ThisWorkbook.Worksheets("MAIN").Cells(i, cd) = d
                            s = msg.Sent
                            ThisWorkbook.Sheets("MAIN").Cells(i, cdir).Value = msg.Parent.Name
                            ThisWorkbook.Sheets("MAIN").Cells(i, co).Value = msg.Subject
                            ThisWorkbook.Sheets("MAIN").Cells(i, ccat).Value = msg.Categories
                            ThisWorkbook.Sheets("MAIN").Cells(i, cc).Value = msg.cc
                            ThisWorkbook.Sheets("MAIN").Cells(i, ce).Value = msg.SenderName
                            ThisWorkbook.Sheets("MAIN").Cells(i, cr).Value = msg.ReceivedByName
                            ThisWorkbook.Sheets("MAIN").Cells(i, ch).Value = h
     
                            If msg.unRead = True Then
                                ThisWorkbook.Sheets("MAIN").Cells(i, crnr).Value = "Not Read"
                                nbUnRead = nbUnRead + 1
                            Else
                                ThisWorkbook.Sheets("MAIN").Cells(i, crnr).Value = "Read"
                            End If
     
                            If olFolder.Name = "Sent Items" Then
                                If s = True And d = dateFiltre Then
                                    ThisWorkbook.Sheets("MAIN").Cells(i, cs).Value = "Sent"
                                    nbSent = nbSent + 1
                                Else
                                    ThisWorkbook.Sheets("MAIN").Cells(i, cs).Value = "Brouillon"
                                End If
                            Else
                                ThisWorkbook.Sheets("MAIN").Cells(i, cs).Value = "Received"
                                If d = dateFiltre Then
                                    nbRecu = nbRecu + 1
                                End If
     
                                If olFolder.Name Like "Inbox" And msg.Categories Like "" Then
                                'compter le nbr de msg sans category recus a la date dateFiltre
                                   nbNoCat = nbNoCat + 1
                                    If nbNoCat = 1 Then
                                        minDate = dateR
                                    ElseIf nbNoCat > 0 Then
                                        If dateR < minDate Then
                                            minDate = dateR
                                        End If
                                    End If
                                End If
                            End If
     
                            i = i + 1
                            j = j + 1
                            If j > olFolder.Items.Count Then
                                Exit Do
                            End If
                        Else
                            j = j + 1
                            If j > olFolder.Items.Count Then
                                Exit Do
                            End If
                        End If
                    Else
                        j = j + 1
                        If j > olFolder.Items.Count Then
                            Exit Do
                        End If
                    End If
                Loop
     
        End If
     
        nomDos = olFolder.Name
        'appel à la macro ss dossier
        Sous_Dossier olFolder, dd, df
     
        End Sub
        'routine pour calculer le nombre de mails dans le dossier Sent Items
        Sub DossierSent(olFolder As Outlook.Folder)
     
        Dim Folder As Outlook.Folder
        Dim msg As Outlook.MailItem
        Dim it As Outlook.Items
        Dim j As Long
        Dim dateR As Date
        Dim d As Date
        Dim nomDos As String
        Dim s As Boolean
     
        j = 1
        If olFolder.Items.Count > 0 Then
                Do While True
                    If TypeOf olFolder.Items(j) Is MailItem Then
     
                        Set msg = olFolder.Items(j)
                        dateR = msg.ReceivedTime
                        d = Format(dateR, "dd/mm/yyyy")
     
                        'filtrer les mails, compter ceux envoyes a la date d
                       If d = dateFiltre Then
                            If j = olFolder.Items.Count Then
                                If env Then
                                    nbSent = nbSent + 1
                                End If
                                Exit Do
                            Else
                               If env Then
                                    nbSent = nbSent + 1
                                End If
                            End If
                            j = j + 1
                        Else
     
                            If j = olFolder.Items.Count Then
                                Exit Do
                            End If
                            j = j + 1
                        End If
                    Else
     
                        If j = olFolder.Items.Count Then
                            Exit Do
                        End If
                        j = j + 1
                    End If
                Loop
     
        End If
        nomDos = olFolder.Name
        'appel à la macro ss dossier
        Sous_DossierSent olFolder, dd, df
     
        End Sub
        'routine pour parcourir les sous dossiers du dossier Sent Items
        Sub Sous_DossierSent(olFolder As Outlook.Folder, dd As Date, df As Date)
     
        Dim Folder As Outlook.Folder
        Dim olFldr As Outlook.Folder
        Dim sourceFolder As Outlook.Folder
        Dim msg As Outlook.MailItem
        Dim it As Outlook.Items
        Dim j As Long
        Dim dateR As Date
        Dim d As Date
     
        j = 1
     
        For Each Folder In olFolder.Folders
            If Not Folder Is Nothing Then
                'appel à la macro dossier
               DossierSent Folder
            Else
                Exit Sub
            End If
        Next Folder
     
        End Sub
     
        'Date Debut Cellule G5 Onglet MAIN
        'Date Debut Cellule G7 Onglet MAIN
        'Date FILTRE Cellule B2 Onglet FILTRE
        Sub main()
        Call ini_sub
        i = 2
        dd = ThisWorkbook.Worksheets("FILTRE").Range("B1").Value
        df = ThisWorkbook.Worksheets("FILTRE").Range("B2").Value
        dateFiltre = ThisWorkbook.Sheets("FILTRE").Range("B3").Value
        nbSent = 0
     
        nbNoCat = 0
        nbRecu = 0
        nbNoCatOld = 0
        Set OlApp = CreateObject("Outlook.Application")
        Set myNamespace = OlApp.GetNamespace("MAPI")
        'MailBoxName = "Mailbox - MAACHE Amira (EXT) OperCorTpl"
        MailBoxName = "Mailbox - Par-Coos-Edm-Dma-Fpv-Low"
     
        nbLines = ThisWorkbook.Sheets("MAIN").Range("A" & Rows.Count).End(xlUp).Row
        nbColumns = ThisWorkbook.Worksheets("MAIN").Rows(1).Find(What:="*", After:=ThisWorkbook.Worksheets("MAIN").Range("A1"), SearchDirection:=xlPrevious, SearchOrder:=xlByColumns).Column
        col = LettreColonne(nbColumns)
        If nbLines > 1 Then
            ThisWorkbook.Sheets("MAIN").Range("A2" & ":" & col & nbLines).Clear
        End If
     
        Set olFolder = myNamespace.Folders(MailBoxName)
        Dim dos As Outlook.Folder
        For Each dos In olFolder.Folders
        'nbRecu dans tous les dossiers sauf Sent Items
           If dos.Name = "Inbox" Or dos.Name = "Configuration" Or dos.Name = "Deleted Items" Or dos.Name = "Folders" Or dos.Name = "Sent Items" Then
                If dos.Name = "Inbox" Then
                    inbox = True
                    Else
                    inbox = False
     
                End If
                If dos.Name = "Sent Items" Then
                    env = True
                Else
                    env = False
                End If
     
                'parcours du dossier inbox et calcul de nbNoCat
               dossier dos
            End If
     
        Next dos
     
     
        jour = Day(minDate)
        mois = Month(minDate)
        annee = Year(minDate)
     
        ThisWorkbook.Sheets("MAIN").Range("D:D").WrapText = True
        ThisWorkbook.Sheets("FILTRE").Range("B8").Value = nbUnRead
        ThisWorkbook.Sheets("FILTRE").Range("B7").Value = Format(minDate, "dd/mm/yyyy") 'jour & "/" & mois & "/" & annee
        ThisWorkbook.Sheets("FILTRE").Range("B6").Value = nbNoCat
        ThisWorkbook.Sheets("FILTRE").Range("B5").Value = nbSent
        ThisWorkbook.Sheets("FILTRE").Range("B4").Value = nbRecu
        Set olFolder = myNamespace.Folders(MailBoxName)
        For Each dos In olFolder.Folders
        'nbRecu dans tous les dossiers sauf Sent Items
           If dos.Name = "Inbox" Or dos.Name = "Configuration" Or dos.Name = "Deleted Items" Or dos.Name = "Folders" Or dos.Name = "Sent Items" Then
                If dos.Name = "Inbox" Then
                    inbox = True
                    Else
                    inbox = False
     
                End If
                If dos.Name = "Sent Items" Then
                    env = True
                Else
                    env = False
                End If
     
                'parcours du dossier inbox et calcul de nbNoCat
               dossierOld dos
            End If
        Next dos
        ThisWorkbook.Sheets("FILTRE").Range("B9").Value = nbNoCatOld
        Call fin_sub
     
        End Sub
        Sub dossierOld(olFolder As Outlook.Folder)
     
        Dim Folder As Outlook.Folder
        Dim msg As Outlook.MailItem
        Dim j As Long
        Dim dateR As Date
        Dim d As Date
        Dim NumeroJour As Integer
        Dim nomDos As String
        Dim isMinDate As Boolean
     
     
     
        'And dateR = Format(minDate, "dd/mm/yyyy")
        j = 1
     
        If olFolder.Items.Count > 0 Then
                Do While True
                    If TypeOf olFolder.Items(j) Is MailItem Then
     
                        Set msg = olFolder.Items(j)
                        dateR = msg.ReceivedTime
                        NumeroJour = Weekday(d, vbMonday)
                        isMinDate = (Format(dateR, "dd/mm/yyyy") = Format(minDate, "dd/mm/yyyy"))
                        d = Format(dateR, "dd/mm/yyyy")
     
                       If isMinDate Then
     
                            If olFolder.Name Like "Inbox" And msg.Categories Like "" Then
                                'compter le nbr de msg sans category recus a la date dateFiltre
                               nbNoCatOld = nbNoCatOld + 1
     
                            End If
                            i = i + 1
                            j = j + 1
                            If j > olFolder.Items.Count Then
                                Exit Do
                            End If
                        Else
                            j = j + 1
                            If j > olFolder.Items.Count Then
                                Exit Do
                            End If
                        End If
                    Else
                        j = j + 1
                        If j > olFolder.Items.Count Then
                            Exit Do
                        End If
                    End If
                Loop
     
        End If
     
        nomDos = olFolder.Name
        'appel à la macro ss dossier
        Sous_DossierOld olFolder, dd, df
     
        End Sub
        Sub Sous_DossierOld(olFolder As Outlook.Folder, dd As Date, df As Date)
     
        Dim Folder As Outlook.Folder
        Dim j As Long
     
        j = 1
        For Each Folder In olFolder.Folders
            If Not Folder Is Nothing Then
                'appel à la macro dossier
               dossierOld Folder
            Else
                Exit Sub
            End If
        Next Folder
     
        End Sub

  4. #4
    Expert éminent

    Homme Profil pro
    Curieux
    Inscrit en
    Juillet 2012
    Messages
    5 138
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Curieux
    Secteur : Arts - Culture

    Informations forums :
    Inscription : Juillet 2012
    Messages : 5 138
    Points : 9 972
    Points
    9 972
    Billets dans le blog
    5
    Par défaut
    Quel est le volume :

    - de boites mails
    - de dossiers parcourus
    - d'éléments analysés

    et au final ça tourne ne combien de temps ?

    bien sûr qu'il y a des optimisations possibles, mais on ne fait pas des miracles quand on manipule Outlook ainsi, j'ai des programmes qui tournent pendant 4 ou 5h chaque nuit pour décortiquer une centaine de boites mails.

  5. #5
    Membre régulier
    Homme Profil pro
    Étudiant
    Inscrit en
    Novembre 2015
    Messages
    184
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Aube (Champagne Ardenne)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Novembre 2015
    Messages : 184
    Points : 83
    Points
    83
    Par défaut
    Bonjour Joe,

    Merci de m'avoir répondu. Le volume de boites mails est grosse(20000 mails). Cependant, j'ai trouvé un moyen de réduire le temps largement.

    L'idée est de garder les données dans la feuille MAIN, et d'ajouter des nouvelles données dessus. Lors de chaque exécution, il suffit de supprimer les données de la veille car ceci peut être imcomplètes(par ex : la dernière exécution était hier midi, donc les mails d'hier apm ne sont pas recopiés) et d'importer à partir du début hier.

    Est-ce que vous auriez des idée comment modifier le code?

  6. #6
    Expert éminent

    Homme Profil pro
    Curieux
    Inscrit en
    Juillet 2012
    Messages
    5 138
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Curieux
    Secteur : Arts - Culture

    Informations forums :
    Inscription : Juillet 2012
    Messages : 5 138
    Points : 9 972
    Points
    9 972
    Billets dans le blog
    5
    Par défaut
    Il faut que tu mettes en place un mécanisme pour filtrer les éléments et ne travailler que sur une collection ciblée.

    En l'occurrence, ici, tu vas devoir isoler une collection répondant à un critère de "date de réception"

    La méthode Restrict te permet cela
    Voici l'excellente documentation Microsoft : https://msdn.microsoft.com/fr-fr/lib.../ff869597.aspx


    et je te montre deux Restrictions différentes que je vais cumuler en deux étapes, par simplicité je vais travailler sur le dossier actif :

    récupérer une collection en fonction de la date de réception
    +
    récupérer une (sous)collection des mails contenant un certain mot (ou une phrase) dans l'objet du mail
    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
    Sub toto()
     
    Dim LeFiltre As String
    Dim MesMails, MesMailsInitial
    Dim MonMot As String
    Dim DateFin As Date
    DateFin = "01/01/2017"
        ' du dossier actif
        With ActiveExplorer.CurrentFolder
            ' on écrit le filtre : les éléments reçus après le 01/01/2017 00h00
            LeFiltre = "[Receivedtime] > '" & Format((DateFin), "dd/mm/yyyy hh:mm") & "'"
            ' parmi les mails du dossier, j'applique la restriction
            Set MesMailsInitial = .Items.Restrict(LeFiltre)
            'MesMailsInitial est donc le lot de mails > DateFin
     
            ' maintenant, on va sous-filtrer cette collection pour ne sortir que les mails dont l'objet contient un certain texte
            MonMot = "Texte dans l'objet"
            LeFiltre = "@SQL=""http://schemas.microsoft.com/mapi/proptag/0x0037001f"" like '%" & MonMot & "%'"
            Set MesMails = MesMailsInitial.Restrict(LeFiltre)
            ' MesMails est la sous-collection appartenant à MesMailsInitial, où chaque item possède dans l'objet la chaine de caractère cherchée
        End With
    End Sub

    On peut aussi travailler avec la méthode Find, mais pour des dossiers volumineux Restrict est beaucoup plus efficace.

  7. #7
    Membre régulier
    Homme Profil pro
    Étudiant
    Inscrit en
    Novembre 2015
    Messages
    184
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Aube (Champagne Ardenne)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Novembre 2015
    Messages : 184
    Points : 83
    Points
    83
    Par défaut
    Je vous remercie pour la technique que vous m'avez introduit. Voici mon nouveau programme. Je pense qu'il y a des erreurs sur MesMails, MesMailsInitial et olFolder.Items. Mais je ne sais pas où il est.

    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
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
    858
    859
    860
    861
    862
    863
    864
    865
    866
    867
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
    880
    881
    882
    883
    884
    885
    886
    887
    888
    889
    890
    891
    892
    893
    894
    895
    896
    897
    898
    899
    900
    901
    902
    903
    904
    905
    906
    907
    908
    909
    910
    911
    912
    913
    914
    915
    916
    917
    918
    919
    920
    921
    922
    923
    924
    925
    926
    927
    928
    929
    930
    931
    932
    933
    934
    935
    936
    937
    938
    939
    940
    941
    942
    943
    944
    945
    946
    947
    948
    949
    950
    951
    952
    953
    954
    955
    956
    957
    958
    959
    960
    961
    962
    963
    964
    965
    966
    967
    968
    969
    970
    971
    972
    973
    974
    975
    976
    977
    978
    979
    980
    981
    982
    983
    984
    985
    986
    987
    988
    989
    990
    991
    992
    993
    994
    995
    996
    997
    998
    999
    1000
    1001
    1002
    1003
    Option Explicit
     
    Public dd As Date, df As Date
     
    Public dateFiltre As Date
     
    Dim i As Long
     
    Dim MailBoxName As String
     
    Dim OlApp As Object
     
    Dim olFolder As Outlook.Folder
     
    Dim myNamespace As Outlook.Namespace
     
    Dim cellDate As Range
     
    Dim cellStatus As Range
     
    Dim cellObject As Range
     
    Dim cellDossier As Range
     
    Dim cellCategory As Range
     
    Dim cellCC As Range
     
    Dim cellHour As Range
     
    Dim cellExp As Range
     
    Dim cellRecept As Range
     
    Dim cellReadNotRead As Range
     
    Dim cc As Long
     
    Dim ch As Long
     
    Dim ce As Long
     
    Dim cr As Long
     
    Dim crnr As Long
     
    Dim cd As Long
     
    Dim cs As Long
     
    Dim co As Long
     
    Dim ccat As Long
     
    Dim cdir As Long
     
    Dim nbLines As Long
     
    Dim nbColumns As Long
     
    Dim col As String
     
    Dim nbRecu As Long
     
    Dim nbSent As Long
     
    Dim nbNoCat As Long
     
    Dim nbNoCatOld As Long
     
    Dim nbUnRead As Long
     
    Dim inbox As Boolean
     
    Dim env As Boolean
     
    Dim del As Boolean
     
    Dim minDate As String
     
    Dim jour As String
     
    Dim mois As String
     
    Dim annee As String
     
     
     
     
     
    'deux macros pour accelerer l execution de la macro principale:ini_sub et fin_sub
     
    Public Sub ini_sub()
     
        Application.ScreenUpdating = False 'rafraichissement ecran (pour ne pas voir défiler les macros)
     
        Application.Calculation = xlCalculationManual ' supprime calcul auto EXCEL pour gagner du temps.  A remettre dans fin_sub
     
        Application.DisplayStatusBar = False
     
        Application.EnableEvents = False
     
        ActiveSheet.DisplayPageBreaks = False
     
    End Sub
     
    Public Sub fin_sub()
     
        Application.ScreenUpdating = True 'rafrfraichissement ecran
     
        Application.Calculation = xlCalculationAutomatic
     
        Application.DisplayStatusBar = True
     
        Application.EnableEvents = True
     
        ActiveSheet.DisplayPageBreaks = True
     
    End Sub
     
     
     
    Function LettreColonne(c As Long) As String
     
     
     
    Dim reste As Long
     
    Dim quotient As Long
     
     
     
    quotient = Int(c / 26)
     
    reste = c Mod 26
     
     
     
    If quotient = 0 And reste = 0 Then
     
        Exit Function
     
    End If
     
    If quotient = 0 Then
     
        LettreColonne = Chr(64 + reste)
     
    Else
     
        If reste = 0 Then
     
            quotient = quotient - 1
     
            If quotient = 0 Then
     
                LettreColonne = Chr(64 + 26)
     
            Else
     
                LettreColonne = Chr(64 + quotient) & Chr(64 + 26)
     
            End If
     
        Else
     
            LettreColonne = Chr(64 + quotient) & Chr(64 + reste)
     
        End If
     
    End If
     
     
     
    End Function
     
     
     
    Sub Sous_Dossier(olFolder As Outlook.Folder, dd As Date, df As Date)
     
     
     
    Dim Folder As Outlook.Folder
     
    Dim olFldr As Outlook.Folder
     
    Dim sourceFolder As Outlook.Folder
     
    Dim msg As Outlook.MailItem
     
    Dim it As Outlook.Items
     
    Dim j As Long
     
    Dim dateR As Date
     
    Dim d As Date
     
     
     
    j = 1
     
     
     
    For Each Folder In olFolder.Folders
     
        If Not Folder Is Nothing Then
     
            'appel à la macro dossier
     
            dossier Folder
     
        Else
     
            Exit Sub
     
        End If
     
    Next Folder
     
     
     
    End Sub
     
     
     
    Sub dossier(olFolder As Outlook.Folder)
     
     
     
    Dim Folder As Outlook.Folder
     
    Dim msg As Outlook.MailItem
     
    Dim j As Long
     
    Dim dateR As Date
     
    Dim d As Date
     
    Dim h As Date
     
    Dim NumeroJour As Integer
     
    Dim nomDos As String
     
    Dim s As Boolean
     
     
     
    '''''''''''''''''''
     
    Dim cellCC As Range
     
    Dim cellHour As Range
     
    Dim cellExp As Range
     
    Dim cellRecept As Range
     
    Dim cellReadNotRead As Range
     
    Dim cc As Long
     
    Dim ch As Long
     
    Dim ce As Long
     
    Dim cr As Long
     
    Dim crnr As Long
     
    '''''''''''''''''''''''''''
     
    j = 1
     
    Set cellCC = ThisWorkbook.Worksheets("MAIN").Cells.Find("CC", lookat:=xlWhole)
     
    cc = cellCC.Column
     
    Set cellHour = ThisWorkbook.Worksheets("MAIN").Cells.Find("HOUR", lookat:=xlWhole)
     
    ch = cellHour.Column
     
    Set cellExp = ThisWorkbook.Worksheets("MAIN").Cells.Find("SENDER", lookat:=xlWhole)
     
    ce = cellExp.Column
     
    Set cellRecept = ThisWorkbook.Worksheets("MAIN").Cells.Find("RECEIVER", lookat:=xlWhole)
     
    cr = cellRecept.Column
     
    Set cellReadNotRead = ThisWorkbook.Worksheets("MAIN").Cells.Find("READ\NOTREAD", lookat:=xlWhole)
     
    crnr = cellReadNotRead.Column
     
    Set cellDate = ThisWorkbook.Worksheets("MAIN").Cells.Find("DATE", lookat:=xlWhole)
     
    cd = cellDate.Column
     
    Set cellDossier = ThisWorkbook.Worksheets("MAIN").Cells.Find("DOSSIER", lookat:=xlWhole)
     
    cdir = cellDossier.Column
     
    Set cellStatus = ThisWorkbook.Worksheets("MAIN").Cells.Find("STATUS", lookat:=xlWhole)
     
    cs = cellStatus.Column
     
    Set cellObject = ThisWorkbook.Worksheets("MAIN").Cells.Find("SUBJECT", lookat:=xlWhole)
     
    co = cellObject.Column
     
    Set cellCategory = ThisWorkbook.Worksheets("MAIN").Cells.Find("CATEGORY", lookat:=xlWhole)
     
    ccat = cellCategory.Column
     
     
     
     
     
    Dim LeFiltre As String
     
    Dim MesMails, MesMailsInitial As Outlook.Items
     
    'Dim MonMot As String
     
    ' du dossier actif
     
    With ActiveExplorer.CurrentFolder
     
        ' on écrit le filtre : les éléments reçus après le 01/01/2017 00h00
     
        LeFiltre = "[Receivedtime] > '" & Format((df), "dd/mm/yyyy hh:mm") & "'"
     
        ' parmi les mails du dossier, j'applique la restriction
     
        'Set MesMailsInitial = .Items.Restrict(LeFiltre)
     
        'MesMailsInitial est donc le lot de mails > DateFin
     
     
     
        ' maintenant, on va sous-filtrer cette collection pour ne sortir que les mails dont l'objet contient un certain texte
     
        'MonMot = "Texte dans l'objet"
     
        'LeFiltre = "@SQL=""http://schemas.microsoft.com/mapi/proptag/0x0037001f"" like '%" & MonMot & "%'"
     
        Set MesMails = MesMailsInitial.Restrict(LeFiltre)
     
        ' MesMails est la sous-collection appartenant à MesMailsInitial, où chaque item possède dans l'objet la chaine de caractère cherchée
     
    End With
     
     
     
     
     
    If olFolder.Items.Count > 0 Then
     
            Do While True
     
                If TypeOf olFolder.Items(j) Is MailItem Then
     
     
     
                    Set msg = olFolder.Items(j)
     
                    dateR = msg.ReceivedTime
     
                    d = Format(dateR, "dd/mm/yyyy")
     
                    h = Format(dateR, "hh:mm")
     
                    NumeroJour = Weekday(d, vbMonday)
     
                    'filtrer les mails ne pas afficher ceux reçus samedi ou dimanche
     
                    If d > dd And d < df And NumeroJour <> 6 And NumeroJour <> 7 Then
     
     
     
     
     
                        ThisWorkbook.Worksheets("MAIN").Cells(i, cd) = d
     
                        s = msg.Sent
     
                        ThisWorkbook.Sheets("MAIN").Cells(i, cdir).Value = msg.Parent.Name
     
                        ThisWorkbook.Sheets("MAIN").Cells(i, co).Value = msg.Subject
     
                        ThisWorkbook.Sheets("MAIN").Cells(i, ccat).Value = msg.Categories
     
                        ThisWorkbook.Sheets("MAIN").Cells(i, cc).Value = msg.cc
     
                        ThisWorkbook.Sheets("MAIN").Cells(i, ce).Value = msg.SenderName
     
                        ThisWorkbook.Sheets("MAIN").Cells(i, cr).Value = msg.ReceivedByName
     
                        ThisWorkbook.Sheets("MAIN").Cells(i, ch).Value = h
     
     
     
                        If msg.unRead = True Then
     
                            ThisWorkbook.Sheets("MAIN").Cells(i, crnr).Value = "Not Read"
     
                            nbUnRead = nbUnRead + 1
     
                        Else
     
                            ThisWorkbook.Sheets("MAIN").Cells(i, crnr).Value = "Read"
     
                        End If
     
     
     
                        If olFolder.Name = "Sent Items" Then
     
                            If s = True And d = dateFiltre Then
     
                                ThisWorkbook.Sheets("MAIN").Cells(i, cs).Value = "Sent"
     
                                nbSent = nbSent + 1
     
                            Else
     
                                ThisWorkbook.Sheets("MAIN").Cells(i, cs).Value = "Brouillon"
     
                            End If
     
                        Else
     
                            ThisWorkbook.Sheets("MAIN").Cells(i, cs).Value = "Received"
     
                            If d = dateFiltre Then
     
                                nbRecu = nbRecu + 1
     
                            End If
     
     
     
                            If olFolder.Name Like "Inbox" And msg.Categories Like "" Then
     
                            'compter le nbr de msg sans category recus a la date dateFiltre
     
                                nbNoCat = nbNoCat + 1
     
                                If nbNoCat = 1 Then
     
                                    minDate = dateR
     
                                ElseIf nbNoCat > 0 Then
     
                                    If dateR < minDate Then
     
                                        minDate = dateR
     
                                    End If
     
                                End If
     
                            End If
     
                        End If
     
     
     
                        i = i + 1
     
                        j = j + 1
     
                        If j > olFolder.Items.Count Then
     
                            Exit Do
     
                        End If
     
                    Else
     
                        j = j + 1
     
                        If j > olFolder.Items.Count Then
     
                            Exit Do
     
                        End If
     
                    End If
     
                Else
     
                    j = j + 1
     
                    If j > olFolder.Items.Count Then
     
                        Exit Do
     
                    End If
     
                End If
     
            Loop
     
     
     
    End If
     
     
     
    nomDos = olFolder.Name
     
    'appel à la macro ss dossier
     
    Sous_Dossier olFolder, dd, df
     
     
     
    End Sub
     
    'routine pour calculer le nombre de mails dans le dossier Sent Items
     
    Sub DossierSent(olFolder As Outlook.Folder)
     
     
     
    Dim Folder As Outlook.Folder
     
    Dim msg As Outlook.MailItem
     
    Dim it As Outlook.Items
     
    Dim j As Long
     
    Dim dateR As Date
     
    Dim d As Date
     
    Dim nomDos As String
     
    Dim s As Boolean
     
     
     
    j = 1
     
    If olFolder.Items.Count > 0 Then
     
            Do While True
     
                If TypeOf olFolder.Items(j) Is MailItem Then
     
     
     
                    Set msg = olFolder.Items(j)
     
                    dateR = msg.ReceivedTime
     
                    d = Format(dateR, "dd/mm/yyyy")
     
     
     
                    'filtrer les mails, compter ceux envoyes a la date d
     
                    If d = dateFiltre Then
     
                        If j = olFolder.Items.Count Then
     
                            If env Then
     
                                nbSent = nbSent + 1
     
                            End If
     
                            Exit Do
     
                        Else
     
                          If env Then
     
                                nbSent = nbSent + 1
     
                            End If
     
                        End If
     
                        j = j + 1
     
                    Else
     
     
     
                        If j = olFolder.Items.Count Then
     
                            Exit Do
     
                        End If
     
                        j = j + 1
     
                    End If
     
                Else
     
     
     
                    If j = olFolder.Items.Count Then
     
                        Exit Do
     
                    End If
     
                    j = j + 1
     
                End If
     
            Loop
     
     
     
    End If
     
    nomDos = olFolder.Name
     
    'appel à la macro ss dossier
     
    Sous_DossierSent olFolder, dd, df
     
     
     
    End Sub
     
    'routine pour parcourir les sous dossiers du dossier Sent Items
     
    Sub Sous_DossierSent(olFolder As Outlook.Folder, dd As Date, df As Date)
     
     
     
    Dim Folder As Outlook.Folder
     
    Dim olFldr As Outlook.Folder
     
    Dim sourceFolder As Outlook.Folder
     
    Dim msg As Outlook.MailItem
     
    Dim it As Outlook.Items
     
    Dim j As Long
     
    Dim dateR As Date
     
    Dim d As Date
     
     
     
    j = 1
     
     
     
    For Each Folder In olFolder.Folders
     
        If Not Folder Is Nothing Then
     
            'appel à la macro dossier
     
            DossierSent Folder
     
        Else
     
            Exit Sub
     
        End If
     
    Next Folder
     
     
     
    End Sub
     
     
     
    'Date Debut Cellule G5 Onglet MAIN
     
    'Date Debut Cellule G7 Onglet MAIN
     
    'Date FILTRE Cellule B2 Onglet FILTRE
     
    Sub main()
     
    Call ini_sub
     
    i = 2
     
    dd = ThisWorkbook.Worksheets("FILTRE").Range("B1").Value
     
    df = ThisWorkbook.Worksheets("FILTRE").Range("B2").Value
     
    dateFiltre = ThisWorkbook.Sheets("FILTRE").Range("B3").Value
     
    nbSent = 0
     
     
     
    nbNoCat = 0
     
    nbRecu = 0
     
    nbNoCatOld = 0
     
    Set OlApp = CreateObject("Outlook.Application")
     
    Set myNamespace = OlApp.GetNamespace("MAPI")
     
    'MailBoxName = "Mailbox - MAACHE Amira (EXT) OperCorTpl"
     
    'MailBoxName = "Mailbox - Par-Coos-Edm-Dma-Fpv-Low"
     
    MailBoxName = "Mailbox - ZHENG Jianwei OperClmRrdSno"
     
     
     
    nbLines = ThisWorkbook.Sheets("MAIN").Range("A" & Rows.Count).End(xlUp).Row
     
    nbColumns = ThisWorkbook.Worksheets("MAIN").Rows(1).Find(What:="*", After:=ThisWorkbook.Worksheets("MAIN").Range("A1"), SearchDirection:=xlPrevious, SearchOrder:=xlByColumns).Column
     
    col = LettreColonne(nbColumns)
     
    If nbLines > 1 Then
     
    '    ThisWorkbook.Sheets("MAIN").Range("A2" & ":" & col & nbLines).Clear
     
    End If
     
     
     
    Set olFolder = myNamespace.Folders(MailBoxName)
     
    Dim dos As Outlook.Folder
     
    For Each dos In olFolder.Folders
     
    'nbRecu dans tous les dossiers sauf Sent Items
     
        If dos.Name = "Inbox" Or dos.Name = "Configuration" Or dos.Name = "Deleted Items" Or dos.Name = "Folders" Or dos.Name = "Sent Items" Then
     
            If dos.Name = "Inbox" Then
     
                inbox = True
     
                Else
     
                inbox = False
     
     
     
            End If
     
            If dos.Name = "Sent Items" Then
     
                env = True
     
            Else
     
                env = False
     
            End If
     
     
     
            'parcours du dossier inbox et calcul de nbNoCat
     
            dossier dos
     
        End If
     
     
     
    Next dos
     
     
     
     
     
    jour = Day(minDate)
     
    mois = Month(minDate)
     
    annee = Year(minDate)
     
     
     
    ThisWorkbook.Sheets("MAIN").Range("D:D").WrapText = True
     
    ThisWorkbook.Sheets("FILTRE").Range("B8").Value = nbUnRead
     
    ThisWorkbook.Sheets("FILTRE").Range("B7").Value = Format(minDate, "dd/mm/yyyy") 'jour & "/" & mois & "/" & annee
     
    ThisWorkbook.Sheets("FILTRE").Range("B6").Value = nbNoCat
     
    ThisWorkbook.Sheets("FILTRE").Range("B5").Value = nbSent
     
    ThisWorkbook.Sheets("FILTRE").Range("B4").Value = nbRecu
     
    Set olFolder = myNamespace.Folders(MailBoxName)
     
    For Each dos In olFolder.Folders
     
    'nbRecu dans tous les dossiers sauf Sent Items
     
        If dos.Name = "Inbox" Or dos.Name = "Configuration" Or dos.Name = "Deleted Items" Or dos.Name = "Folders" Or dos.Name = "Sent Items" Then
     
            If dos.Name = "Inbox" Then
     
                inbox = True
     
                Else
     
                inbox = False
     
     
     
            End If
     
            If dos.Name = "Sent Items" Then
     
                env = True
     
            Else
     
                env = False
     
            End If
     
     
     
            'parcours du dossier inbox et calcul de nbNoCat
     
            dossierOld dos
     
        End If
     
    Next dos
     
    ThisWorkbook.Sheets("FILTRE").Range("B9").Value = nbNoCatOld
     
    Call fin_sub
     
     
     
    End Sub
     
    Sub dossierOld(olFolder As Outlook.Folder)
     
     
     
    Dim Folder As Outlook.Folder
     
    Dim msg As Outlook.MailItem
     
    Dim j As Long
     
    Dim dateR As Date
     
    Dim d As Date
     
    Dim NumeroJour As Integer
     
    Dim nomDos As String
     
    Dim isMinDate As Boolean
     
     
     
     
     
     
     
    'And dateR = Format(minDate, "dd/mm/yyyy")
     
    j = 1
     
     
     
    If olFolder.Items.Count > 0 Then
     
            Do While True
     
                If TypeOf olFolder.Items(j) Is MailItem Then
     
     
     
                    Set msg = olFolder.Items(j)
     
                    dateR = msg.ReceivedTime
     
                    NumeroJour = Weekday(d, vbMonday)
     
                    isMinDate = (Format(dateR, "dd/mm/yyyy") = Format(minDate, "dd/mm/yyyy"))
     
                    d = Format(dateR, "dd/mm/yyyy")
     
     
     
                   If isMinDate Then
     
     
     
                        If olFolder.Name Like "Inbox" And msg.Categories Like "" Then
     
                            'compter le nbr de msg sans category recus a la date dateFiltre
     
                            nbNoCatOld = nbNoCatOld + 1
     
     
     
                        End If
     
                        i = i + 1
     
                        j = j + 1
     
                        If j > olFolder.Items.Count Then
     
                            Exit Do
     
                        End If
     
                    Else
     
                        j = j + 1
     
                        If j > olFolder.Items.Count Then
     
                            Exit Do
     
                        End If
     
                    End If
     
                Else
     
                    j = j + 1
     
                    If j > olFolder.Items.Count Then
     
                        Exit Do
     
                    End If
     
                End If
     
            Loop
     
     
     
    End If
     
     
     
    nomDos = olFolder.Name
     
    'appel à la macro ss dossier
     
    Sous_DossierOld olFolder, dd, df
     
     
     
    End Sub
     
    Sub Sous_DossierOld(olFolder As Outlook.Folder, dd As Date, df As Date)
     
     
     
    Dim Folder As Outlook.Folder
     
    Dim j As Long
     
     
     
    j = 1
     
    For Each Folder In olFolder.Folders
     
        If Not Folder Is Nothing Then
     
            'appel à la macro dossier
     
            dossierOld Folder
     
        Else
     
            Exit Sub
     
        End If
     
    Next Folder
     
     
     
    End Sub

  8. #8
    Expert éminent

    Homme Profil pro
    Curieux
    Inscrit en
    Juillet 2012
    Messages
    5 138
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Curieux
    Secteur : Arts - Culture

    Informations forums :
    Inscription : Juillet 2012
    Messages : 5 138
    Points : 9 972
    Points
    9 972
    Billets dans le blog
    5
    Par défaut
    Bonjour,

    il est bien évident que je ne vais pas décortiquer les 1000 lignes de code de ta procédure

    je te conseille de tester ton programme en pas à pas, en inspectant bien à chaque ligne de code que tes variables sont correctes, en t'aidant au besoin de la fenêtre des variables locales et/ou à coup de debug.print

    il est impératif que tu isoles la position du problème, déjà demander aux contributeurs de décortiquer une procédure de 100 lignes c'est pas très cool, mais là 1000 lignes

Discussions similaires

  1. Texte trop long pour afficher dans une combobox
    Par bavmorda1 dans le forum Macros et VBA Excel
    Réponses: 3
    Dernier message: 12/02/2008, 13h42
  2. Récupérer infos page html pour les insérer dans Outlook
    Par andromede88 dans le forum Windows
    Réponses: 4
    Dernier message: 21/09/2006, 14h21
  3. Filtre trop long pour un état
    Par Miss Ti dans le forum Access
    Réponses: 3
    Dernier message: 08/08/2006, 17h54
  4. Réponses: 8
    Dernier message: 28/03/2006, 15h53
  5. [TComboBox] Contenu trop long pour la zone d'affichage
    Par bebeours dans le forum C++Builder
    Réponses: 2
    Dernier message: 15/09/2003, 16h21

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