Hi All,
Please help how to view combobox list until 3 Column .
In Example
Combobox PartID : (PARTID,TYPE)
Need Result
Combobox PartID : (PARTID,TYPE,PARTDESC)
Thanks - John
Hi All,
Please help how to view combobox list until 3 Column .
In Example
Combobox PartID : (PARTID,TYPE)
Need Result
Combobox PartID : (PARTID,TYPE,PARTDESC)
Thanks - John
create a named range with the 3 columns--->PARTID,TYPE,PARTDESC selected
your named range say "ALL" refers to: =LookupLists!$E$2:$G$8
in the properties of the combobox look for the "Column Count" change that to "3"
then in the Listfillrange use the named range from the 3 columns ->
Listfillrange: ALL
I think people forget the word "THANK YOU!!!!" Do you still know it???
There is a little star ( ADD REPUTATION ) below those person who helped you. Click it to say your "PRIVATE APPRECIATION TO THEIR EFFORT ON THEIR CONTRIBUTIONS "
Regards,
Vladimir
Hi Vlady,
Thanks for support, i'm do until until step 2 ( "Column Count" change that to "3"), but i'm newbie for this VBA need help where's listfillrange .... if i not wrong for this code ..
or still properties combobox but no see listfillrange ...![]()
Me.cboPart.Clear For Each cPart In ws.Range("PartIDList") With Me.cboPart .AddItem cPart.Value .List(.ListCount - 1, 1) = cPart.Offset(0, 1).Value End With Next cPart
Thansk - John
Please explain for more detail if i make stupid mistake![]()
first offset returns "Type"
add another offset for the "Part Descr."![]()
.List(.ListCount - 1, 1) = cPart.Offset(0, 1).Value
![]()
.List(.ListCount - 1, 2) = cPart.Offset(0, 2).Value
Last edited by vlady; 07-02-2013 at 04:03 AM.
Hi Vlady,
Do you mean be like thisI'm test and work like charm.![]()
Me.cboPart.Clear For Each cPart In ws.Range("PartIDList") With Me.cboPart .AddItem cPart.Value .List(.ListCount - 1, 1) = cPart.Offset(0, 1).Value .List(.ListCount - 1, 2) = cPart.Offset(0, 2).Value End With Next cPart
Thank you very much - John
Nice to hear that.
Your welcome and sorry for the delay.. have visitors.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks