Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I need to Show, in combo box the list of data contained in a column, i the same way that excel shows the list when applying autoFilter Thanks -- Message posted from http://www.ExcelForum.com |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
one way to do it would be this (untested), assuming the data is in column 1
dim rng1 as range, cell as range Set rng1 = intersect(activesheet.usedrange, columns(1).SpecialCells(xlVisible)) userform1.combobox1.clear for each cell in rng1 userform1.combobox1.additem cell.value next Bob Flanagan Macro Systems http://www.add-ins.com Productivity add-ins and downloadable books on VB macros for Excel "ajliaks " wrote in message ... Hi, I need to Show, in combo box the list of data contained in a column, in the same way that excel shows the list when applying autoFilter Thanks. --- Message posted from http://www.ExcelForum.com/ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Sum data showing when filtering a pivot table | Excel Discussion (Misc queries) | |||
subtotal not showing after filtering list | Excel Discussion (Misc queries) | |||
Filtering a column, where it stopped showing records | Excel Worksheet Functions | |||
Combo Box Filtering Macro | Excel Discussion (Misc queries) | |||
Combo Box Filtering Macro | Excel Discussion (Misc queries) |