Hi Abdul
Yes this is possible, here's a sample code with combined combo boxes from
the Control tools box.
Make sure you have your first list of values in column 1 and other dependant
values in the adjacent columns
Place code on your first combo(please note no headers used in the data
lists):
Private Sub ComboBox1_Change()
MajListes Me.ComboBox2, ComboBox1.ListIndex
End Sub
Private Sub MajListes(Cbbx As MSForms.ComboBox, ValeurIndx As Integer)
Const PremiereLigne As Integer = 1
Dim DerniereLigne As Integer, NoCol As Integer, CelEntree As Range
NoCol = ValeurIndx + 2
DerniereLigne = Cells(PremiereLigne, NoCol).End(xlDown).Row
Set CelEntree = ActiveSheet.Range(Cells(PremiereLigne, NoCol),
Cells(DerniereLigne, NoCol))
With Cbbx
.ListFillRange = CelEntree.Address
.ListIndex = 0
End With
Set CelEntree = Nothing
End Sub
HTH
Cordially
Pascal