Hi Guys
I have a worksheet combobox with the ListFillRange populated with numbers form corresponding rows.
How can I hide/unhide rows based on this value?
I have this which doesn't work:
Thanks in advance![]()
Private Sub Combobox1_Change() Dim c As Range For Each c In Range("A25:A44") If c.Value > ComboBox1.Value Then c.EntireRow.Hidden = True ElseIf c.Value <= ComboBox1.Value Then c.EntireRow.Hidden = False End If Next c End Sub
Bookmarks