Merci beaucoup pour ta réponse mais ça ne marche tjs pas...
Je ne comprend pas vraiment pourquoi à vrai dire
Merci beaucoup pour ton aide :)Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 Option Explicit Dim k As String Private Sub combobox1_click() k = ComboBox1.Value Dim q As Variant q = ThisWorkbook.Worksheets(k).Range("a1", _ ActiveSheet.Range("a1").End(xlDown).End(xlToRight)).Select Me.ListBox1.Visible = True Me.ListBox1.List = q 'MsgBox (k) End Sub Private Sub ComboBox1_DropButtonClick() ComboBox1.Clear Dim i As Long For i = 4 To Sheets.Count ComboBox1.AddItem Sheets(i).Name Next i End Sub