MixedUpExcel
Board Regular
- Joined
- Apr 7, 2015
- Messages
- 212
- Office Version
-
- 365
- Platform
-
- Windows
Hi,
I have Sheet1 password protected.
I have approx 600 lines of product titles from Row 14 to 614.
I want to have the ComboBox so that the user can enter a word eg. blue and the filter will filter the 600 lines to just those that contain the word blue.
Bit already done:
Combobox linked to range so it shows the items when I click on the arrow at the side of the Combobox.
Combobox so that the user can click in and type text to filter down to what they are looking for - once they click on an item from the list.. I can't get it to link up to a filter.
I've found this piece of code with regards to filtering behind a password protected sheet.
With ActiveSheet
.Protect Password:="GERALD", AllowFiltering:=True
.EnableSelection = xlUnlockedCells
End With
Here: http://www.mrexcel.com/forum/excel-...s-password-protect-sheet-allow-filtering.html
Any solutions as to how I can get the filterbox to populate with the chosen item from the list in the Combobox?
Thanks.
Simon
I have Sheet1 password protected.
I have approx 600 lines of product titles from Row 14 to 614.
I want to have the ComboBox so that the user can enter a word eg. blue and the filter will filter the 600 lines to just those that contain the word blue.
Bit already done:
Combobox linked to range so it shows the items when I click on the arrow at the side of the Combobox.
Combobox so that the user can click in and type text to filter down to what they are looking for - once they click on an item from the list.. I can't get it to link up to a filter.
I've found this piece of code with regards to filtering behind a password protected sheet.
With ActiveSheet
.Protect Password:="GERALD", AllowFiltering:=True
.EnableSelection = xlUnlockedCells
End With
Here: http://www.mrexcel.com/forum/excel-...s-password-protect-sheet-allow-filtering.html
Any solutions as to how I can get the filterbox to populate with the chosen item from the list in the Combobox?
Thanks.
Simon