• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Protect page/Sort/Filter Drop Down

honestlyfungirl

New Member
I am trying to procect a page but still be able to use the filter drop down box and sort the information. I would love any help I can get.
 
When you protect the sheet, you are presented with a list of options that you would like to leave enabled. Among those is the list to enable AutoFilter, which will let you use the filter drop downs.


Unfortunately, Sort is a different matter. While it does appear as an option when you protect the sheet, it will only let you sort cells that are unprotected. As this is probably not the case for you, you may be stuck here.


Possible work around would be to create some short macros that do something like

[pre]
Code:
PsuedoCode
ActiveSheet.Unprotect
SortData
ActiveSheet.Protect
[/pre]
But that option depends on other factors (macros enabled, shared workbook, etc).
 
Back
Top