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 :

Filtre sans doublons dans ComboBox


Sujet :

Macros et VBA Excel

  1. #1
    Futur Membre du Club
    Inscrit en
    Juillet 2008
    Messages
    14
    Détails du profil
    Informations forums :
    Inscription : Juillet 2008
    Messages : 14
    Points : 8
    Points
    8
    Par défaut Filtre sans doublons dans ComboBox
    Bonjour a tous.

    Je poste ici car j'ai vraiment besoin d'aide, je galère depuis déja 2 jours sur ce truc..

    Voila, je dois faire un formulaire type "annuaire" et je bloque dans les comboBox..

    Alors voila, j'ai une combo "Nom" et je voudrai qu'a la frappe du nom la combos "Prénom" me propose les choix qui correspondent, dans le cas ou il y a des personne avec le meme nom mais pas forcement le meme prénom.
    Ensuite même principe pour le numéro de telephone, mais sa, je pourrais bien adapter, si vous pouviez m'aider à completer le début de code que j'ai adapté, sa m'arrangerai bien

    Le problème pour l'instant est que La liste du combo n'est pas exclusive au nom déja entré, j'ai donc pour le même nom tous les prénoms de ma feuille.
    Et puis pour pauffiner, mais c'est pas trop important, la liste m'affiche plein de ligne vide.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    Private Sub UserForm_Initialize()
     
    Dim Cell As Range
        Me.ComboBox3.Clear
     
        For Each Cell In Worksheets("feuil1").Range("E2:E65536")
            Me.ComboBox3 = Cell
            If Me.ComboBox3.ListIndex = -1 Then _
                Me.ComboBox3.AddItem Cell
     
        Next Cell
     
    End Sub




    Ma combo 2 est celle du nom, la 3 celle du prénom et la 5 celle du tel :






    Voila voila, je n'aime pas trop demander aux autres mais je suis pressé par le temps cette fois ci..

    Par contre si quelqu'un me repond, je suis débutant je comprends pas encore tout en VB. ^^

    En tout cas merci beaucoup d'avance !

  2. #2
    Membre actif Avatar de ilcocodrillo
    Profil pro
    Inscrit en
    Février 2007
    Messages
    260
    Détails du profil
    Informations personnelles :
    Âge : 18
    Localisation : France

    Informations forums :
    Inscription : Février 2007
    Messages : 260
    Points : 276
    Points
    276
    Par défaut
    Bonjour,

    Tu peux t'inspirer de ce sujet dans la FAQ

    Comment remplir une ComboBox sans doublon et trié par ordre croissant ?

  3. #3
    Futur Membre du Club
    Inscrit en
    Juillet 2008
    Messages
    14
    Détails du profil
    Informations forums :
    Inscription : Juillet 2008
    Messages : 14
    Points : 8
    Points
    8
    Par défaut
    hummm, j'ai trouvé la partie qui m'interesse, j'ai quelque probleme a la faire fonctionner, voila comme je l'ai arrangée, pouvez vous me dire ou est l'erreur svp ?

    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
    Private Sub Alim_Combo(CbxIndex As Integer, Optional Cible As Variant)
        Dim j As Integer
        Dim Obj As Control
     
        Set Obj = Me.Controls("ComboBox" & CbxIndex)
     
        Obj.Clear
     
        If CbxIndex = 2 Then
            For j = 2 To NbLignes
                Obj = Ws.Range("E" & j)
               If Obj.ListIndex = -1 Then Obj.AddItem Ws.Range("E" & j)
            Next j
        Else
             For j = 2 To NbLignes
                If Ws.Range("E" & j).Offset(0, CbxIndex - 2) = Cible Then
                    Obj = Ws.Range("E" & j).Offset(0, CbxIndex - 1)
                    If Obj.ListIndex = -1 Then Obj.AddItem Ws.Range("E" & j).Offset(0, CbxIndex - 1)
                End If
            Next j
       End If
     
       Obj.ListIndex = -1
    End Sub
    Bien entendu j'ai mis

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    Private Sub ComboBox2_Change()
     
    Alim_Combo 3, ComboBox2.Value
     
    End Sub
     
    Private Sub ComboBox3_Change()
     
     Alim_Combo 4, ComboBox3.Value
     
    End Sub
    Et j'ai changer ma combo telephone qui est passé la 4 au lien de la 5 pour les regrouper (2,3,4)

    Merci !

  4. #4
    Futur Membre du Club
    Inscrit en
    Juillet 2008
    Messages
    14
    Détails du profil
    Informations forums :
    Inscription : Juillet 2008
    Messages : 14
    Points : 8
    Points
    8
    Par défaut
    he hop, merci moi même. Apres un gros mal de crane et des conseil d'un collegue voila mon 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
    Private Sub ComboBox2_AfterUpdate()                                         'nom
     
    Worksheets("Feuil1").Activate
    Cells(2, 4).Select
    X = 2
    Me.ComboBox3.Clear
     
     
    Do While (Cells(X, 4).Value) <> ""
        If ComboBox3.Value = "" Then
                If (Cells(X, 4).Value) = ComboBox2.Value Then
                    ActiveCell.Offset(0, 1).Activate
                    Me.ComboBox3.AddItem ActiveCell.Value
                    ActiveCell.Offset(0, -1).Activate
                End If
            X = X + 1
            ActiveCell.Offset(1, 0).Activate
        Else
                If (Cells(X, 5).Value) = ComboBox3.Value And (Cells(X, 4).Value) = ComboBox2.Value Then
                    ActiveCell.Offset(0, 2).Activate
                    Me.ComboBox5.AddItem ActiveCell.Value
                    ActiveCell.Offset(0, -3).Activate
                    Me.ComboBox2.AddItem ActiveCell.Value
                    ActiveCell.Offset(0, 1).Activate
                End If
            X = X + 1
            ActiveCell.Offset(1, 0).Activate
        End If
    Loop
    la c'est juste le pour le Combox "nom"

    maintenant j'aurai aimé un tout ptit peu d'aide pour la fonction Lcase, car j'aimerai que les combo ne tienne pas compte de la casse pour les données dans la liste. Le problème etant que je ne connais pas cette fonction.

    Edit : me suis emballé, c'est bon !

    Et une fois tout ça fini ! hop je simplifie le code et fini !

  5. #5
    Futur Membre du Club
    Inscrit en
    Juillet 2008
    Messages
    14
    Détails du profil
    Informations forums :
    Inscription : Juillet 2008
    Messages : 14
    Points : 8
    Points
    8
    Par défaut
    Salut salut !
    Mon problème n'est pas résolu !

    malheureusement, les doublons sont toujours présents je vous laisse mon code pour qui vous puissiez trouvé ou est l'erreur... J'ai beau chercher, je sais pas d'ou vienne les doublons.

    Voila tout mon code, enjoy !

    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
    Private Sub CheckBox1_Click()                                               'probleme resolu
     
    End Sub
     
    Private Sub ComboBox0_Enter()                                               'reception
     
    X = 1
    ComboBox0.Clear
    ComboBox2.Clear
    ComboBox3.Clear
    ComboBox4.Clear
    ComboBox5.Clear
    ComboBox6.Clear
    ComboBox7.Clear
    ComboBox8.Clear
    ComboBox9.Clear
    ComboBox10.Clear
     
     
        For Each cell In Worksheets("Feuil2").Range("A1:A6")
                Me.ComboBox0 = cell
                If Me.ComboBox0.ListIndex = -1 Then
                Me.ComboBox0.AddItem cell
            End If
     
        Next cell
     
    End Sub
     
    Private Sub ComboBox10_Change()                                             'solution proposee
     
    End Sub
     
    Private Sub ComboBox2_AfterUpdate()                                         'nom
     
    Worksheets("Feuil1").Activate
    Cells(2, 4).Select
    X = 2
    Me.ComboBox3.Clear
     
     
    Do While (Cells(X, 4).Value) <> ""
        If ComboBox3.Value = "" Then
                If (Cells(X, 4).Value) = ComboBox2.Value Then
                    ActiveCell.Offset(0, 1).Activate
                    Me.ComboBox3.AddItem ActiveCell.Value
                    ActiveCell.Offset(0, -1).Activate
                End If
            X = X + 1
            ActiveCell.Offset(1, 0).Activate
        Else
                If (Cells(X, 5).Value) = ComboBox3.Value And (Cells(X, 4).Value) = ComboBox2.Value Then
                    ActiveCell.Offset(0, 2).Activate
                    Me.ComboBox5.AddItem ActiveCell.Value
                    ActiveCell.Offset(0, -3).Activate
                    Me.ComboBox2.AddItem ActiveCell.Value
                    ActiveCell.Offset(0, 1).Activate
                End If
            X = X + 1
            ActiveCell.Offset(1, 0).Activate
        End If
    Loop
     
    End Sub
     
     
    Private Sub ComboBox3_AfterUpdate()                                         'prenom
     
    Worksheets("Feuil1").Activate
    Cells(2, 5).Select
    X = 2
    ComboBox5.Clear
     
    Do While (Cells(X, 5).Value) <> ""
        If ComboBox2.Value = "" Then
            If (Cells(X, 5).Value) = ComboBox3.Value Then
                    ActiveCell.Offset(0, 2).Activate
                    Me.ComboBox5.AddItem ActiveCell.Value
                    ActiveCell.Offset(0, -3).Activate
                    Me.ComboBox2.AddItem ActiveCell.Value
                    ActiveCell.Offset(0, 1).Activate
                End If
            X = X + 1
            ActiveCell.Offset(1, 0).Activate
        Else
                If (Cells(X, 5).Value) = ComboBox3.Value And (Cells(X, 4).Value) = ComboBox2.Value Then
                    ActiveCell.Offset(0, 2).Activate
                    Me.ComboBox5.AddItem ActiveCell.Value
                    ActiveCell.Offset(0, -3).Activate
                    Me.ComboBox2.AddItem ActiveCell.Value
                    ActiveCell.Offset(0, 1).Activate
                End If
            X = X + 1
            ActiveCell.Offset(1, 0).Activate
        End If
    Loop
     
     
     
    End Sub
     
    Private Sub ComboBox4_Enter()                                               'agence
     
    X = 1
    ComboBox4.Clear
     
        For Each cell In Worksheets("Feuil3").Range("B1:B38")
                Me.ComboBox4 = cell
                If Me.ComboBox4.ListIndex = -1 Then
                Me.ComboBox4.AddItem cell
            End If
     
        Next cell
     
    End Sub
     
    Private Sub ComboBox5_Change()                                              'telephone
     
    End Sub
     
    Private Sub ComboBox6_Enter()                                               'type chariot
     
    End Sub
     
    Private Sub ComboBox7_Change()                                              'n° serie
     
    ComboBox6.Value = Mid(ComboBox7.Value, 4, 3)
     
    End Sub
     
    Private Sub ComboBox8_Change()                                              'code panne
     
    End Sub
     
    Private Sub ComboBox9_Change()                                              'probleme
     
    End Sub
     
    Private Sub CommandButton1_Click()                                          'recherche
     
    If UserForm1.ComboBox1.Value <> "" Then Nom = UserForm1.ComboBox1.List(UserForm1.ComboBox1.ListIndex)
    If UserForm1.ComboBox2.Value <> "" Then Prenom = UserForm1.ComboBox2.List(UserForm1.ComboBox2.ListIndex)
    If UserForm1.ComboBox3.Value <> "" Then Tel = UserForm1.ComboBox3.List(UserForm1.ComboBox3.ListIndex)
     
        Selection.AutoFilter Field:=1, Criteria1:="=*" & Nom & "*", Operator:=xlAnd
        Selection.AutoFilter Field:=2, Criteria1:="=*" & Prenom & "*", Operator:=xlAnd
        Selection.AutoFilter Field:=3, Criteria1:="=*" & Tel & "*", Operator:=xlAnd
     
    End Sub
     
    Private Sub CommandButton4_Click()                                          'save
    X = 1
    Do While (Cells(X, 2).Value) <> ""
     
    X = X + 1
    Loop
     
    Cells(X, 1) = UserForm1.ComboBox0.Value
    Cells(X, 2) = UserForm1.DateLabel
    Cells(X, 3) = UserForm1.HeureLabel
    Cells(X, 4) = UserForm1.ComboBox2.Value
    Cells(X, 5) = UserForm1.ComboBox3.Value
    Cells(X, 6) = UserForm1.ComboBox4.Value
    Cells(X, 7) = UserForm1.ComboBox5.Value
    Cells(X, 8) = UserForm1.ComboBox6.Value
    Cells(X, 9) = UserForm1.ComboBox7.Value
    Cells(X, 10) = UserForm1.ComboBox8.Value
    Cells(X, 11) = UserForm1.ComboBox9.Value
    Cells(X, 12) = UserForm1.ComboBox10.Value
    Cells(X, 13) = UserForm1.CheckBox1.Value
     
    If UserForm1.CheckBox1.Value = Enabled Then
    Cells(X, 13) = "Résolu"                 'Problème résolu/non résolu, s'affiche sur le fichier exel lors de la sauvegarde du formulaire
        With Cells(X, 13).Interior
            .ColorIndex = 4
            .Pattern = xlSolid
            .PatternColorIndex = xlAutomatic
        End With
     
     
     
    Else
    Cells(X, 13) = "Non Résolu"
        With Cells(X, 13).Interior
            .ColorIndex = 6
            .Pattern = xlSolid
            .PatternColorIndex = xlAutomatic
        End With
    End If
     
     
    UserForm1.ComboBox0.Value = ""
    UserForm1.ComboBox0.Clear
     
    UserForm1.ComboBox2.Value = ""
    UserForm1.ComboBox2.Clear
     
    UserForm1.ComboBox3.Value = ""
    UserForm1.ComboBox3.Clear
     
    UserForm1.ComboBox4.Value = ""
    UserForm1.ComboBox4.Clear
     
    UserForm1.ComboBox5.Value = ""
    UserForm1.ComboBox5.Clear
     
    UserForm1.ComboBox6.Value = ""
    UserForm1.ComboBox6.Clear
     
    UserForm1.ComboBox7.Value = ""
    UserForm1.ComboBox7.Clear
     
    UserForm1.ComboBox8.Value = ""
    UserForm1.ComboBox8.Clear
     
    UserForm1.ComboBox9.Value = ""
    UserForm1.ComboBox9.Clear
     
    UserForm1.ComboBox10.Value = ""
    UserForm1.ComboBox10.Clear
     
    Call chargeNom
     
     
    End Sub
     
     
     
    Function chargeNom()
     
    X = 2
     
       Do While (Feuil2.Cells(X, 1).Value) <> ""
               UserForm1.ComboBox0.AddItem (Feuil2.Cells(X, 1).Value)
            X = X + 1
        Loop
     
    X = 2
        Do While (Cells(X, 4).Value) <> ""
               UserForm1.ComboBox2.AddItem (Cells(X, 4).Value)
            X = X + 1
        Loop
     
    X = 2
        Do While (Cells(X, 5).Value) <> ""
               UserForm1.ComboBox3.AddItem (Cells(X, 5).Value)
            X = X + 1
        Loop
     
     
    X = 2
        Do While (Cells(X, 6).Value) <> ""
               UserForm1.ComboBox4.AddItem (Cells(X, 6).Value)
            X = X + 1
        Loop
     
     
    X = 2
        Do While (Cells(X, 7).Value) <> ""
               UserForm1.ComboBox5.AddItem (Cells(X, 7).Value)
            X = X + 1
        Loop
     
     
    X = 2
        Do While (Cells(X, 8).Value) <> ""
               UserForm1.ComboBox5.AddItem (Cells(X, 8).Value)
            X = X + 1
        Loop
     
     
    X = 2
        Do While (Cells(X, 9).Value) <> ""
               UserForm1.ComboBox6.AddItem (Cells(X, 9).Value)
            X = X + 1
        Loop
     
        X = 2
        Do While (Cells(X, 10).Value) <> ""
               UserForm1.ComboBox7.AddItem (Cells(X, 10).Value)
            X = X + 1
        Loop
     
        X = 2
        Do While (Cells(X, 11).Value) <> ""
               UserForm1.ComboBox8.AddItem (Cells(X, 11).Value)
            X = X + 1
        Loop
     
         X = 2
        Do While (Cells(X, 11).Value) <> ""
               UserForm1.ComboBox9.AddItem (Cells(X, 11).Value)
            X = X + 1
        Loop
     
        X = 2
        Do While (Cells(X, 12).Value) <> ""
               UserForm1.ComboBox10.AddItem (Cells(X, 12).Value)
            X = X + 1
        Loop
     
     
    End Function
     
    Private Sub DateLabel_Click()
     
    End Sub
     
    Private Sub HeureLabel_Click()
     
    End Sub
     
     
    Private Sub Label12_Click()
     
    End Sub
     
    Private Sub TextBox1_Change()
     
    End Sub
     
    Private Sub UserForm_Initialize()
    'Dim cell As Range
     
    X = 2
     
            ComboBox0.Clear
            ComboBox2.Clear
            ComboBox3.Clear
            ComboBox4.Clear
            ComboBox5.Clear
            ComboBox6.Clear
            ComboBox7.Clear
            ComboBox8.Clear
            ComboBox9.Clear
            ComboBox10.Clear
     
     
            Do While (Cells(X, 1).Value) <> ""
                X = X + 1
            Loop
     
     
       ' For Each cell In Worksheets("Feuil1").Range("E2:E" & X)
       '         Me.ComboBox3 = cell
        '        If Me.ComboBox3.ListIndex = -1 Then
        '        Me.ComboBox3.AddItem cell
         '   End If
     
       ' Next cell
     
     
    DateLabel = Date
     
    HeureLabel = Time
     
      X = 1
        Do While (Cells(X, 2).Value) <> ""
            X = X + 1
        Loop
        TextBox1.Value = X
     
    End Sub
    [EDIT] Solution trouvée

Discussions similaires

  1. [XL-2003] Filtres sans doublons et Combobox // VBA
    Par jonleboss44 dans le forum Macros et VBA Excel
    Réponses: 0
    Dernier message: 21/05/2014, 14h11
  2. Réponses: 17
    Dernier message: 11/03/2009, 10h35
  3. Renseigner une liste sans doublon dans une feuille ou dans un userform
    Par ouskel'n'or dans le forum Macros et VBA Excel
    Réponses: 19
    Dernier message: 26/01/2009, 15h54
  4. Réponses: 6
    Dernier message: 19/01/2009, 22h39
  5. Liste de choix sans doublons dans une colonne
    Par LouFels dans le forum Macros et VBA Excel
    Réponses: 2
    Dernier message: 18/02/2008, 23h58

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