xml - Excel Ribbon - Enable Filter button for protected worksheet -
using excel 2010 protected sheets auto filtering option on ribbon greyed out. right clicking still able filter fine despite sheet being protected doesn't make sense me (but others seem have same problem http://www.ozgrid.com/forum/showthread.php?t=163585)
is there way customize ribbon xml override , enable button permanently?
i've tried:
<?xml version="1.0" encoding="utf-8"?><customui xmlns="http://schemas.microsoft.com/office/2006/01/customui" onload="ribbon_load"> <commands> <command idmso="filter" enable="true"/> </commands> </customui>
but had no effect. grateful help!
edit.
my sheet protected so:
sheet1.protect drawingobjects:=true, contents:=true, scenarios:=true, userinterfaceonly:=true, allowsorting:=true, allowfiltering:=true, allowdeletingcolumns:=true, allowinsertingcolumns:=true sheet1.enableautofilter = true
Comments
Post a Comment