VBA - Display Filtered List in ListBox

AndyDubson

New Member
Joined
Feb 1, 2018
Messages
1
I have a table (TabProduct) on worksheet "Product" which is being filtered based on the value entered in the "Supplier" field on a user form. I want the filtered data to populate a listbox named "ProductSelect"

The code I currently have will only display the rows until the first hidden row. I need to to display the entire filtered range. Can anyone help please!!!


Dim ws As Worksheet, rngList As Range
Set ws = Worksheets("Products")



If Supplier.Value <> "" Then
ws.Range("TabProduct").AutoFilter field:=4, Criteria1:=Supplier.Value
Else
ws.Range("TabProduct").AutoFilter field:=4
End If


With ActiveSheet
Set rngList = ws.Range("TabProduct").Rows.SpecialCells(xlCellTypeVisible)
End With




Me.ProductSelect.List = rngList.Value
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result

Forum statistics

Threads
1,215,373
Messages
6,124,545
Members
449,169
Latest member
mm424

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