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

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.

Forum statistics

Threads
1,223,908
Messages
6,175,306
Members
452,633
Latest member
DougMo

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