Generate sorted unique list from filtered table

nemmi69

Well-known Member
Joined
Mar 15, 2012
Messages
938
Office Version
  1. 365
  2. 2019
  3. 2016
  4. 2013
Platform
  1. Windows
Using the code below I still get the entire list under the header even though a filter is applied for 'Devices'. Trying to find how to get just the filtered list.

VBA Code:
TblId.Range.AutoFilter Field:=3, Criteria1:= "Devices"
 ' 

Aa = Application.Transpose(Evaluate("sort(unique(" & TblName & "[" & HEADERCAT1 & "]))")) 'Array of ITEMS
 
Here's possibly another way...

VBA Code:
Dim rng
Set rng = TblId.ListColumns(HEADERCAT1).DataBodyRange

Aa = Application.Transpose(Evaluate("SORT(UNIQUE(FILTER(" & rng.Address & ",SUBTOTAL(3,OFFSET(" & rng.Address & ",ROW(" & rng.Address & ")-MIN(ROW(" & rng.Address & ")),0,1)))))"))

Although your function will give you more flexibility.

Cheers!
 
Upvote 0

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.

Forum statistics

Threads
1,214,988
Messages
6,122,620
Members
449,092
Latest member
amyap

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top