Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello NG,
I have a worksheet with thousends of rows. I want to list all different values in a listbox. Like in the Excel Autofilter feature (where are all different elements of a column listed). But how can I get this list? I need a fast algo, because I want to do it for all columns. Sometimes the .xls file uses all 65.000 rows. So hole file size can be bigger than 100MB. Best wishes Peter Farge |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Check out
http://www.contextures.com/xladvfilter01.html#FilterUR Sheets("Sheet1").Columns("A").AdvancedFilter _ Action:=xlFilterCopy, _ CopyToRange:=Sheets("Sheet2").Range("A1"), _ Unique:=True -- Regards Ron de Bruin http://www.rondebruin.nl wrote in message ups.com... Hello NG, I have a worksheet with thousends of rows. I want to list all different values in a listbox. Like in the Excel Autofilter feature (where are all different elements of a column listed). But how can I get this list? I need a fast algo, because I want to do it for all columns. Sometimes the .xls file uses all 65.000 rows. So hole file size can be bigger than 100MB. Best wishes Peter Farge |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks a lot!
I was looking for a command like this for hours. Thanks:-) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
List cumulative values in a column | Excel Worksheet Functions | |||
list unique values in a column | Excel Worksheet Functions | |||
create list of unique values from a column with repeated values? | Excel Worksheet Functions | |||
VBA to set AutoFilter to List all rows with same values in column? | Excel Discussion (Misc queries) | |||
Check for list of 3 values (alpha) in a column | Excel Programming |