Filter

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am using a sheet with lots of filter
Is it possible to lock one of the filter (after filtering), in a way that users can operate other filters without the ability to use the locked filter

Thanks for your hel

Mat
 
You can do this with a macro. In this example, the dropdown for column 2
is hidden:

'================================
Sub HideOneArrow()
Range("A1").AutoFilter Field:=2, _
Criteria1:="Ontario", _
Visibledropdown:=False
End Sub
'===========================
 
This might not be important, but I could still do:
Data|filter|ShowAll

and kind of use it.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top