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 :

macro complexe à faire sur un fichier Excel pour récupérer que certains champs et grouper les infos [XL-2016]


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
    Décembre 2005
    Messages
    161
    Détails du profil
    Informations forums :
    Inscription : Décembre 2005
    Messages : 161
    Par défaut macro complexe à faire sur un fichier Excel pour récupérer que certains champs et grouper les infos
    Bonjour

    je galère avec un fichier Excel dans lequel j'ai besoin de récupérer uniquement les champs date avec son format associé et son groupe associé.
    le fichier fait plusieurs milliers de lignes et la majorité des lignes se servent pas (exemple toutes celles avec [champ]= [vide]).
    J'ai besoin de récupérer que 3 informations et les grouper: tous les champs dates :
    • Le nom du groupe

    • [datep] ou [DateP] ou [DatP], [dtarchi], [datedeGeneration]

    • [DateFormat]


    voilà un extrait du fichier avec les 2 premiers blocs :

    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
     
    A00IFUA00100
     
    Commands=
     
    [C1]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=C1
     
    [@_PageIdentifier_@]
     
    PageId=0
     
    [entite]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [datep]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=%d.%m.%Y
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [dtarchi]
     
    DivideBy=1
     
    DefaultValue=t
     
    DateFormat=%m/%d/%y
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [habi]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [nompays]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [peri]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [typfact]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [NumeroDeCompte]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=NumeroDeCompte
     
    [AnneeIFU]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [NumeroDeClient]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [A1]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [TypeIFU]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [NumeroDeDocument]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [DateDeGeneration]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=%d.%m.%Y
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    A00IFUA00100
     
    A00IFUA00101
     
    Commands=
     
    [C1]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=C1
     
    [@_PageIdentifier_@]
     
    PageId=0
     
    [entite]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [datep]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=%d.%m.%Y
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [dtarchi]
     
    DivideBy=1
     
    DefaultValue=t
     
    DateFormat=%m/%d/%y
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=dtarchi
     
    [habi]
     
    DivideBy=1
     
    DefaultValue=90
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [nompays]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [peri]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [typfact]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [NumeroDeCompte]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=NumeroDeCompte
     
    [AnneeIFU]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=AnneeIFU
     
    [NumeroDeClient]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=NumeroDeClient
     
    [A1]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=A1
     
    [TypeIFU]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=TypeIFU
     
    [NumeroDeDocument]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=NumeroDeDocument
     
    [DateDeGeneration]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=%d.%m.%Y
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [Guichet]
     
    DivideBy=1
     
    DefaultValue=00075
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [Peri]
     
    DivideBy=1
     
    DefaultValue=Q
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [CdBque]
     
    DivideBy=1
     
    DefaultValue=30056
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [NomE]
     
    DivideBy=1
     
    DefaultValue=DÉCLARATIONS IFU
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
    Note: les 2 blocs sont séparé par une cellule vide

    Nom : excel.png
Affichages : 241
Taille : 17,0 Ko


    et le résultat que je veux c'est ca:


    Nom : excel_result.png
Affichages : 272
Taille : 14,4 Ko

    est-ce c'est faisable facilement ? par macro ou formule ou je ne sais quoi ? SVP j'attends vos commentaires/solutions
    Images attachées Images attachées  

  2. #2
    Membre extrêmement actif Avatar de mjpmjp
    Homme Profil pro
    Retraité
    Inscrit en
    Avril 2012
    Messages
    1 133
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Hautes Alpes (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : Retraité
    Secteur : Santé

    Informations forums :
    Inscription : Avril 2012
    Messages : 1 133
    Par défaut
    bonjour,
    c'est une blague , c'est çà ?


    A00IFUA00100 datep ...
    A00IFUA00101 datep
    A00IFUA00102 datep
    A00IFUA00103 datep
    A00IFUA00104 datep
    A00IFUA00105 datep
    A00IFUA00106 datep


    @+JP
    Caractéristiques (WEB) phpMyAdmin 4-74 , PHP 5-631 , Apache 2-427 , MySQL 5-719
    Présentation NAS DS-3615xs + 20Go , DSM 6.1.6-15266 Up1 , 12 * WD 4To WD4000F9YZ (10 raid 6+ )+(2 raid 1+) , LinkSys comutateur-switch lgs528p-eu , Onduleur UPS 720W Power Boxx Lcd (4*UPS + 4*MOD)
    Mes contributions (EXCEL) Form GRAPHIQUE: Gestion des boutons , Liste Onglet dynamique...GESTION de FILM

  3. #3
    Membre confirmé
    Inscrit en
    Décembre 2005
    Messages
    161
    Détails du profil
    Informations forums :
    Inscription : Décembre 2005
    Messages : 161
    Par défaut
    hello mjp,
    non c'est pas une blague pourquoi ?
    tu peux m'aider stp comment récupérer chaque info comme je l'ai décris ?

  4. #4
    Membre extrêmement actif Avatar de mjpmjp
    Homme Profil pro
    Retraité
    Inscrit en
    Avril 2012
    Messages
    1 133
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Hautes Alpes (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : Retraité
    Secteur : Santé

    Informations forums :
    Inscription : Avril 2012
    Messages : 1 133
    Par défaut
    bonjour,

    j'ai peut être pas tout compris , mais compare ton image avec ma liste

    A00IFUA00100 datep ...
    A00IFUA00101 datep
    A00IFUA00102 datep
    A00IFUA00103 datep
    A00IFUA00104 datep
    A00IFUA00105 datep
    A00IFUA00106 datep
    donne plus de précision STP

    @+JP
    Caractéristiques (WEB) phpMyAdmin 4-74 , PHP 5-631 , Apache 2-427 , MySQL 5-719
    Présentation NAS DS-3615xs + 20Go , DSM 6.1.6-15266 Up1 , 12 * WD 4To WD4000F9YZ (10 raid 6+ )+(2 raid 1+) , LinkSys comutateur-switch lgs528p-eu , Onduleur UPS 720W Power Boxx Lcd (4*UPS + 4*MOD)
    Mes contributions (EXCEL) Form GRAPHIQUE: Gestion des boutons , Liste Onglet dynamique...GESTION de FILM

  5. #5
    Membre confirmé
    Inscrit en
    Décembre 2005
    Messages
    161
    Détails du profil
    Informations forums :
    Inscription : Décembre 2005
    Messages : 161
    Par défaut
    j'ai peut etre mal expliqué:
    en fait un fichier Excel ou toutes les infos sont en vrac dans la cellule A et parmis toutes les infos, je dois recupérer:
    le nom du bloc
    le nom du champ date : dtarchi, dateP datP, datedeGeneration...
    et le format de la date pour chaque date:

    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
    A00IFUA00100
     
    Commands=
     
    [C1]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=C1
     
    [@_PageIdentifier_@]
     
    PageId=0
     
    [entite]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=
     
    TrailingCharsToRemove=
     
    LeadingCharsToRemove=
     
    StripChars=
     
    FieldName=
     
    [datep]
     
    DivideBy=1
     
    DefaultValue=
     
    DateFormat=%d.%m.%Y
    en rouge ci-dessus, un exemple du premier bloc avec les infos a récupérer et à mettre en forme dans un tableau pour avoir:
    Nom : excel_result.png
Affichages : 187
Taille : 14,4 Ko

    voilà mon Excel

    exempleEx.xlsx

  6. #6
    Membre extrêmement actif Avatar de mjpmjp
    Homme Profil pro
    Retraité
    Inscrit en
    Avril 2012
    Messages
    1 133
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Hautes Alpes (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : Retraité
    Secteur : Santé

    Informations forums :
    Inscription : Avril 2012
    Messages : 1 133
    Par défaut
    bonjour,
    je n'arrive pas à comprendre ce que tu veut

    j'ai parcouru le début de ton fichier ,

    c'est çà que tu veut ?

    A00INAL00101
    [DatP] DateFormat=%d/%m/%y
    [dtarchi] DateFormat=%d/%m/%y

    A00INBA00101
    [datep] DateFormat=%Y%m%d
    [dtarchi] DateFormat=%m/%d/%y

    A00INBA00201
    [DatP] DateFormat=%Y%m%d
    [dtarchi] DateFormat=%m/%d/%y

    A00INBA00301
    [datep] DateFormat=%Y%m%d
    [dtarchi] DateFormat=%m/%d/%y

    @+JP
    Caractéristiques (WEB) phpMyAdmin 4-74 , PHP 5-631 , Apache 2-427 , MySQL 5-719
    Présentation NAS DS-3615xs + 20Go , DSM 6.1.6-15266 Up1 , 12 * WD 4To WD4000F9YZ (10 raid 6+ )+(2 raid 1+) , LinkSys comutateur-switch lgs528p-eu , Onduleur UPS 720W Power Boxx Lcd (4*UPS + 4*MOD)
    Mes contributions (EXCEL) Form GRAPHIQUE: Gestion des boutons , Liste Onglet dynamique...GESTION de FILM

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

Discussions similaires

  1. idee pour traitement sur plusieurs fichier excel
    Par jumpman dans le forum VB.NET
    Réponses: 0
    Dernier message: 28/10/2009, 19h38
  2. Réponses: 1
    Dernier message: 09/07/2009, 18h49
  3. Creer un macro qui verifie une info sur plusieur fichier excel
    Par Esmax666 dans le forum Macros et VBA Excel
    Réponses: 5
    Dernier message: 08/07/2009, 16h42
  4. [XL-2003] Faire mise à jour fichier excel stocké sur une page web
    Par fidecourt dans le forum Macros et VBA Excel
    Réponses: 1
    Dernier message: 09/04/2009, 17h12
  5. Macros sur Plusieurs fichiers Excel
    Par Echizen1 dans le forum Macros et VBA Excel
    Réponses: 4
    Dernier message: 15/06/2006, 11h21

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