Listbox Rowsource refresh from filtered table

Earlyfreak

New Member
Joined
Jan 31, 2017
Messages
16
I have a listbox on a Useform in VBA and I have the listbox load as RowSource from tbl_Exercises
It loads all exercises and muscle groups in listbox

I have buttons on Userform to select a muscle group

Example

Private Sub B_NewYork_Click()
Sheets("Data").ListObjects("tbl_Data").Range.AutoFilter Field:=1
Sheets("Data").ListObjects("tbl_Data").Range.AutoFilter Field:=1, _
Criteria1:="Biceps"
End Sub

This filters the table, however it does not update the listbox on form

I tried using this code to maybe just show visible filtered table but did not work

Private Sub UserForm_Initialize()
Listbox1.RowSource = Sheets("Data").Range("D7").CurrentRegion.Select
End Sub

I looking to filet listbox based on form button and only show that muscle group

Any direct on how to update listbox to only show filtered table RowSource?
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Came up with a solution by watching a youtube video by Paul Kelly Excel Macro Mastery, Thanks excellent content.

I created an advanced filter on the table to a different output range then added to listbox

VBA Code:
' Add the data to the ListBox using RowSource
Private Sub AddDataToListbox()
 ' Get the data range
 Dim rg As Range
 Set rg = GetRange
' Link the data to the ListBox
 With ListboxExercises
 .RowSource = rg.Address(External:=True)
 .ColumnCount = rg.Columns.Count
 .ColumnWidths = "80;85;85;150;150;100"
.ColumnHeads = True
  .ListIndex = 0
  End With
End Sub

Public Function GetRange() As Range
   Set GetRange = shExercises.Range("I1").CurrentRegion
  Set GetRange = GetRange.Offset(1).Resize(GetRange.Rows.Count - 1)
End Function

Private Sub UserForm_Initialize()
AddDataToListbox
End Sub
 
Upvote 0

Forum statistics

Threads
1,213,492
Messages
6,113,967
Members
448,537
Latest member
Et_Cetera

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