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 :

Erreur : 1004 La formule est incomplète, vérifiez qu’un crochet de fin] ne manque pas


Sujet :

Macros et VBA Excel

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre éclairé
    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    237
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2004
    Messages : 237
    Par défaut Erreur : 1004 La formule est incomplète, vérifiez qu’un crochet de fin] ne manque pas
    Après avoir mis au point une Fonction (qui fait parfaitement son job) en utilisant l'enregistreur de macro, je me retrouve avec cette erreur :
    Erreur : 1004
    La formule est incomplète, vérifiez qu’un crochet de fin] ne manque pas
    Si je la mets en commentaire ou si je ne la sollicite pas tout se passe bien,
    J'ai vu sur Google que c'a pouvait venir de l'enregistreur de Macro

    Cette Fonction récupère toute une flopée (85) de données dans un TCD, les ecrit dans un tableau(), fait quelque calcule sur le tableau en question et ecrit le tous dans une feuille Excel
    J’ai dû implanter beaucoup de <<On Error Resume Next>> dans la lecture de mes champs car selon sa source le TCD ne me ramenait quelque fois rien, c’est pas ce que je trouve de plus propre mais c’a fonctionne

    Quelqu'un a-t-il déjà eue cette mésaventure et comment s'en est-il sorti ?
    Merci de vos expériences sur le sujet

    A titre d'information je donne le code de cette fonction,
    Je ne peux pas mettre le dossier entier car assez volumineux

    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
     
    Public Function requeteTCD(ByVal sem As Integer, ByVal dernierextracte_semaine As Integer)
        Dim Pvt As PivotTable
        Dim idx_TCD As Integer
     
    ReDim tab_stock_TCD(86)         'On fait un raz du tableau tab_yymmww
     
    For idx_TCD = LBound(tab_stock_TCD) To UBound(tab_stock_TCD)
        tab_stock_TCD(idx_TCD) = 0 'On le rempli de ZERO pour ne pas avoir de message d'erreurs
    Next idx_TCD
     
    'On ajuste le Tableau croisé dynamique4pour que tous mes champs soit disponible sinon ilsont remplacé par des <<0>>
    Worksheets("Stock").Select
     
        'Définit le TCD dans la feuille
        Set Pvt = Worksheets("Stock").PivotTables("Tableau croisé dynamique4")
     
    'ActiveSheet.PivotTables("Tableau croisé dynamique4").PivotCache.Refresh 'On actualise "Tableau croisé dynamique4" avec les nouvelle données
    Pvt.PivotCache.Refresh 'On actualise "Tableau croisé dynamique4" avec les nouvelle données
     
    '***********************On actualise tous les filtres **************************************************
    'With ActiveSheet.PivotTables("Tableau croisé dynamique4").PivotFields("State") 'On actualise les filtres
    With Pvt.PivotFields("State") 'On actualise les filtres
            .PivotItems("Agreed").Visible = True
            .PivotItems("Closed").Visible = False
            .PivotItems("InfoNeeded").Visible = True
            .PivotItems("Qualified").Visible = True
            .PivotItems("Submitted").Visible = True
            .PivotItems("Verified").Visible = False
            .PivotItems("WaitingForAgreement").Visible = True
            .PivotItems("WaitingForInformation").Visible = True
            .PivotItems("WorkedOn").Visible = True
            .PivotItems("(blank)").Visible = True
    End With
     
    'With ActiveSheet.PivotTables("Tableau croisé dynamique4").PivotFields("Comité")
    With Pvt.PivotFields("Comité")
        .PivotItems("Banque").Visible = True
        .PivotItems("Banque").ShowDetail = True
     
        .PivotItems("Banque Privée").Visible = True
        .PivotItems("Banque Privée").ShowDetail = True
     
        .PivotItems("Distribution").Visible = True
        .PivotItems("Distribution").ShowDetail = True
     
        .PivotItems("E-Banking").Visible = True
        .PivotItems("E-Banking").ShowDetail = True
     
        .PivotItems("Support").Visible = True
        .PivotItems("Support").ShowDetail = True
     
        .PivotItems("Crédit").Visible = True
        .PivotItems("Crédit").ShowDetail = True
     
        .PivotItems("(blank)").Visible = False
    End With
     
        On Error Resume Next
        Pvt.PivotFields("Type").PivotItems("01 - Defect").ShowDetail = True
        On Error Resume Next
        Pvt.PivotFields("Type").PivotItems("02 - Enhancement Request").ShowDetail = True
        On Error Resume Next
        Pvt.PivotFields("Type").PivotItems("03 - Data Change").ShowDetail = True
        On Error Resume Next
        Pvt.PivotFields("Type").PivotItems("04 - Request for Information").ShowDetail = True
    '************************************ Fin d'actualisation de tous les filtres **************************************************
         tab_stock_TCD(1) = "Sem " & dernierextracte_semaine
     
         '*** Banque ***
         On Error Resume Next
         tab_stock_TCD(2) = Pvt.GetData("'01 - Defect' 'Banque' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(3) = Pvt.GetData("'01 - Defect' 'Banque' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(4) = Pvt.GetData("'01 - Defect' 'Banque' '03 - Minor'")
     
         On Error Resume Next
         tab_stock_TCD(5) = Pvt.GetData("'02 - Enhancement Request' 'Banque' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(6) = Pvt.GetData("'02 - Enhancement Request' 'Banque' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(7) = Pvt.GetData("'02 - Enhancement Request' 'Banque' '03 - Minor'")
     
         On Error Resume Next
         tab_stock_TCD(8) = Pvt.GetData("'03 - Data Change' 'Banque' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(9) = Pvt.GetData("'03 - Data Change' 'Banque' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(10) = Pvt.GetData("'03 - Data Change' 'Banque' '03 - Minor'")
     
         On Error Resume Next
         tab_stock_TCD(11) = Pvt.GetData("'04 - Request for Information' 'Banque' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(12) = Pvt.GetData("'04 - Request for Information' 'Banque' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(13) = Pvt.GetData("'04 - Request for Information' 'Banque' '03 - Minor'")
     
              '*** Crédit ***
         On Error Resume Next
         tab_stock_TCD(14) = Pvt.GetData("'01 - Defect' 'Crédit' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(15) = Pvt.GetData("'01 - Defect' 'Crédit' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(16) = Pvt.GetData("'01 - Defect' 'Crédit' '03 - Minor'")
     
         On Error Resume Next
         tab_stock_TCD(17) = Pvt.GetData("'02 - Enhancement Request' 'Crédit' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(18) = Pvt.GetData("'02 - Enhancement Request' 'Crédit' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(19) = Pvt.GetData("'02 - Enhancement Request' 'Crédit' '03 - Minor'")
     
         On Error Resume Next
         tab_stock_TCD(20) = Pvt.GetData("'03 - Data Change' 'Crédit' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(21) = Pvt.GetData("'03 - Data Change' 'Crédit' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(22) = Pvt.GetData("'03 - Data Change' 'Crédit' '03 - Minor'")
     
         On Error Resume Next
         tab_stock_TCD(23) = Pvt.GetData("'04 - Request for Information' 'Crédit' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(24) = Pvt.GetData("'04 - Request for Information' 'Crédit' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(25) = Pvt.GetData("'04 - Request for Information' 'Crédit' '03 - Minor'")
     
         '*** Distribution ***
         On Error Resume Next
         tab_stock_TCD(26) = Pvt.GetData("'01 - Defect' 'Distribution' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(27) = Pvt.GetData("'01 - Defect' 'Distribution' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(28) = Pvt.GetData("'01 - Defect' 'Distribution' '03 - Minor'")
     
         On Error Resume Next
         tab_stock_TCD(29) = Pvt.GetData("'02 - Enhancement Request' 'Distribution' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(30) = Pvt.GetData("'02 - Enhancement Request' 'Distribution' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(31) = Pvt.GetData("'02 - Enhancement Request' 'Distribution' '03 - Minor'")
     
         On Error Resume Next
         tab_stock_TCD(32) = Pvt.GetData("'03 - Data Change' 'Distribution' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(33) = Pvt.GetData("'03 - Data Change' 'Distribution' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(34) = Pvt.GetData("'03 - Data Change' 'Distribution' '03 - Minor'")
     
         On Error Resume Next
         tab_stock_TCD(35) = Pvt.GetData("'04 - Request for Information' 'Distribution' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(36) = Pvt.GetData("'04 - Request for Information' 'Distribution' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(37) = Pvt.GetData("'04 - Request for Information' 'Distribution' '03 - Minor'")
     
         '*** E-Banking ***
         On Error Resume Next
         tab_stock_TCD(38) = Pvt.GetData("'01 - Defect' 'E-Banking' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(39) = Pvt.GetData("'01 - Defect' 'E-Banking' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(40) = Pvt.GetData("'01 - Defect' 'E-Banking' '03 - Minor'")
     
         On Error Resume Next
         tab_stock_TCD(41) = Pvt.GetData("'02 - Enhancement Request' 'E-Banking' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(42) = Pvt.GetData("'02 - Enhancement Request' 'E-Banking' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(43) = Pvt.GetData("'02 - Enhancement Request' 'E-Banking' '03 - Minor'")
     
         On Error Resume Next
         tab_stock_TCD(44) = Pvt.GetData("'03 - Data Change' 'E-Banking' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(45) = Pvt.GetData("'03 - Data Change' 'E-Banking' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(46) = Pvt.GetData("'03 - Data Change' 'E-Banking' '03 - Minor'")
     
         On Error Resume Next
         tab_stock_TCD(47) = Pvt.GetData("'04 - Request for Information' 'E-Banking' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(48) = Pvt.GetData("'04 - Request for Information' 'E-Banking' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(49) = Pvt.GetData("'04 - Request for Information' 'E-Banking' '03 - Minor'")
     
         '*** Banque privé ***
         On Error Resume Next
         tab_stock_TCD(50) = Pvt.GetData("'01 - Defect' 'Banque Privée' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(51) = Pvt.GetData("'01 - Defect' 'Banque Privée' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(52) = Pvt.GetData("'01 - Defect' 'Banque Privée' '03 - Minor'")
     
         On Error Resume Next
         tab_stock_TCD(53) = Pvt.GetData("'02 - Enhancement Request' 'Banque Privée' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(54) = Pvt.GetData("'02 - Enhancement Request' 'Banque Privée' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(55) = Pvt.GetData("'02 - Enhancement Request' 'Banque Privée' '03 - Minor'")
     
         On Error Resume Next
         tab_stock_TCD(56) = Pvt.GetData("'03 - Data Change' 'Banque Privée' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(57) = Pvt.GetData("'03 - Data Change' 'Banque Privée' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(58) = Pvt.GetData("'03 - Data Change' 'Banque Privée' '03 - Minor'")
     
         On Error Resume Next
         tab_stock_TCD(59) = Pvt.GetData("'04 - Request for Information' 'Banque Privée' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(60) = Pvt.GetData("'04 - Request for Information' 'Banque Privée' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(61) = Pvt.GetData("'04 - Request for Information' 'Banque Privée' '03 - Minor'")
     
         '*** Support ***
         On Error Resume Next
         tab_stock_TCD(62) = Pvt.GetData("'01 - Defect' 'Support' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(63) = Pvt.GetData("'01 - Defect' 'Support' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(64) = Pvt.GetData("'01 - Defect' 'Support' '03 - Minor'")
     
         On Error Resume Next
         tab_stock_TCD(65) = Pvt.GetData("'02 - Enhancement Request' 'Support' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(66) = Pvt.GetData("'02 - Enhancement Request' 'Support' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(67) = Pvt.GetData("'02 - Enhancement Request' 'Support' '03 - Minor'")
     
         On Error Resume Next
         tab_stock_TCD(68) = Pvt.GetData("'03 - Data Change' 'Support' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(69) = Pvt.GetData("'03 - Data Change' 'Support' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(70) = Pvt.GetData("'03 - Data Change' 'Support' '03 - Minor'")
     
         On Error Resume Next
         tab_stock_TCD(71) = Pvt.GetData("'04 - Request for Information' 'Support' '01 - Blocking'")
         On Error Resume Next
         tab_stock_TCD(72) = Pvt.GetData("'04 - Request for Information' 'Support' '02 - Major'")
         On Error Resume Next
         tab_stock_TCD(73) = Pvt.GetData("'04 - Request for Information' 'Support' '03 - Minor'")
     
         tab_stock_TCD(74) = "Sem " & dernierextracte_semaine
         '*** On decale mon table d'un champ pour ne pas ecraser le numero de la semaine en colonne 76
         '*** On additione pour completer la colonne << Severity >>
     
    '     tab_stock_TCD(74) = tab_stock_TCD(1) + tab_stock_TCD(13) + tab_stock_TCD(25) + tab_stock_TCD(37) + tab_stock_TCD(49) + tab_stock_TCD(61)
         tab_stock_TCD(75) = tab_stock_TCD(2) + tab_stock_TCD(14) + tab_stock_TCD(26) + tab_stock_TCD(38) + tab_stock_TCD(50) + tab_stock_TCD(62)
         tab_stock_TCD(76) = tab_stock_TCD(3) + tab_stock_TCD(15) + tab_stock_TCD(27) + tab_stock_TCD(39) + tab_stock_TCD(51) + tab_stock_TCD(63)
         tab_stock_TCD(77) = tab_stock_TCD(4) + tab_stock_TCD(16) + tab_stock_TCD(28) + tab_stock_TCD(40) + tab_stock_TCD(52) + tab_stock_TCD(64)
         tab_stock_TCD(78) = tab_stock_TCD(5) + tab_stock_TCD(17) + tab_stock_TCD(29) + tab_stock_TCD(41) + tab_stock_TCD(53) + tab_stock_TCD(65)
         tab_stock_TCD(79) = tab_stock_TCD(6) + tab_stock_TCD(18) + tab_stock_TCD(30) + tab_stock_TCD(42) + tab_stock_TCD(54) + tab_stock_TCD(66)
         tab_stock_TCD(80) = tab_stock_TCD(7) + tab_stock_TCD(19) + tab_stock_TCD(31) + tab_stock_TCD(43) + tab_stock_TCD(55) + tab_stock_TCD(67)
         tab_stock_TCD(81) = tab_stock_TCD(8) + tab_stock_TCD(20) + tab_stock_TCD(32) + tab_stock_TCD(44) + tab_stock_TCD(56) + tab_stock_TCD(68)
         tab_stock_TCD(82) = tab_stock_TCD(9) + tab_stock_TCD(21) + tab_stock_TCD(33) + tab_stock_TCD(45) + tab_stock_TCD(57) + tab_stock_TCD(69)
         tab_stock_TCD(83) = tab_stock_TCD(10) + tab_stock_TCD(22) + tab_stock_TCD(34) + tab_stock_TCD(46) + tab_stock_TCD(58) + tab_stock_TCD(70)
         tab_stock_TCD(84) = tab_stock_TCD(11) + tab_stock_TCD(23) + tab_stock_TCD(35) + tab_stock_TCD(47) + tab_stock_TCD(59) + tab_stock_TCD(71)
         tab_stock_TCD(85) = tab_stock_TCD(12) + tab_stock_TCD(24) + tab_stock_TCD(36) + tab_stock_TCD(48) + tab_stock_TCD(60) + tab_stock_TCD(72)
         tab_stock_TCD(86) = tab_stock_TCD(13) + tab_stock_TCD(25) + tab_stock_TCD(37) + tab_stock_TCD(49) + tab_stock_TCD(61) + tab_stock_TCD(73)
     
    '
    Worksheets("Stock").Activate
    Worksheets("Stock").Range(Cells(3, 4), Cells(UBound(tab_stock_TCD) + 2, 4)).Value = Application.WorksheetFunction.Transpose(tab_stock_TCD)
    Worksheets("Stock Hebdo").Activate
    Worksheets("Stock Hebdo").Range(Cells(3, sem), Cells(UBound(tab_stock_TCD) + 2, sem)).Value = Application.WorksheetFunction.Transpose(tab_stock_TCD)
     
    End Function
    Bonne journée à tous
    Henri

  2. #2
    Expert éminent


    Profil pro
    Inscrit en
    Juin 2003
    Messages
    14 008
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2003
    Messages : 14 008
    Par défaut
    Bonjour,

    ta répétition de On Error Resume Next ne sert à rien ... un seul appel suffit ... pour mémoire avec ton "On Error resume Next" tu te masque les yeux ,mais tu ne traite pas tes cas d'erreur cela peu aussi être la cause de problèmes...




    sur qu'elle ligne est ton "Erreur 1004" ?

  3. #3
    Membre éclairé
    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    237
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2004
    Messages : 237
    Par défaut
    Comme le code à été écrit en plusieurs étapes, J’ai trois Modules + ThisWorkBook,
    Ma gestion d’erreur est dans mon ThisWorkBook qui lui-même appelle un module qui en appelle un autre
    L’erreur en question n’est pas dans la fonction,
    C’est la dernière pour le moment et comme je l’écrivais plus haut, si je la mets en commentaire je n’ai rien

    J’oubliais aussi de dire que comme certain utilisateurs changeai les critères de tri dans le TCD selon leurs besoins, je suis obligé de les faire réapparaitre moi-même à un moment

    Merci de l’intérêt que vous portez à cette boulette
    Henri

  4. #4
    Expert confirmé Avatar de illight
    Homme Profil pro
    Analyste décisionnel
    Inscrit en
    Septembre 2005
    Messages
    2 344
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 44
    Localisation : France, Bas Rhin (Alsace)

    Informations professionnelles :
    Activité : Analyste décisionnel
    Secteur : Service public

    Informations forums :
    Inscription : Septembre 2005
    Messages : 2 344
    Par défaut
    J'ai du mal à comprendre : cette erreur apparait à quel moment ?

    Tu as mis cette fonction à l'ouverture de ton Workbook ?

    Si tu lances la fonction manuellement (si jamais tu répond oui à la question juste au-dessus), l'erreur apparait de nouveau ? Si oui, sur quelle ligne ?
    1. Avant de poster, et http://www.developpez.com/sources/
    2. Lors du post, n'oubliez pas, si besoin les balises CODE => voir ici pour l'utilisation
    3. N'oubliez pas le
    4. N'oubliez pas le si la réponse vous a été utile !

Discussions similaires

  1. Formule EXCEL en VBA erreur 1004
    Par svetlan dans le forum Macros et VBA Excel
    Réponses: 3
    Dernier message: 28/11/2012, 16h36
  2. Formule EXCEL en VBA erreur 1004
    Par svetlan dans le forum VBScript
    Réponses: 0
    Dernier message: 28/11/2012, 09h51
  3. [XL-2010] Erreur d'exécution '1004': La formule que vous avez tapée contient une erreur
    Par corinthien dans le forum Macros et VBA Excel
    Réponses: 6
    Dernier message: 06/10/2010, 17h46
  4. [XL-2003] erreur de formulation ? (erreur 1004)
    Par cecyl dans le forum Macros et VBA Excel
    Réponses: 2
    Dernier message: 23/06/2010, 13h49
  5. Réponses: 11
    Dernier message: 30/10/2007, 09h35

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