Bonjour,
j'utilise Excel:Mac2011
J'ai récupéré le code suivant :
Private Sub TextBox1_Change()
Mots = Split(Trim(Me.TextBox1), " ")
tbl = choix
For i = LBound(Mots) To UBound(Mots)
tbl = Filter(tbl, Mots(i), True, vbTextCompare)
Next i
Me.ListBox1.List = tbl
End Sub
et il s'arrête au niveau de l'instruction suivante : Me.ListBox1.List = Tbl avec le message d'erreur suivant :
"impossible de définir la propriété list. valeur de propriété non valide"
Est ce que quelqu'un a une idée sur ce message ?
Merci