G Guest Jun 23, 2006 #2 zulfer7 said: Can Anyone Help? Click to expand... Hi, Try adding the following line to an 'Auto_Open' macro in your workbook: CommandBars("Worksheet Menu_ Bar").Controls("Data").Controls("Sort").Enabled = False You will need to change this back again again by changing 'False' to 'True' when you leave your workbook. HTH Neil www.nwarwick.co.uk
zulfer7 said: Can Anyone Help? Click to expand... Hi, Try adding the following line to an 'Auto_Open' macro in your workbook: CommandBars("Worksheet Menu_ Bar").Controls("Data").Controls("Sort").Enabled = False You will need to change this back again again by changing 'False' to 'True' when you leave your workbook. HTH Neil www.nwarwick.co.uk
G Guest Jun 23, 2006 #3 For some reason I have to add ... to the sort command but it works fine now. Thanks! Sub auto_open() CommandBars("Worksheet Menu Bar").Controls("Data").Controls("Sort...").Enabled = False End Sub
For some reason I have to add ... to the sort command but it works fine now. Thanks! Sub auto_open() CommandBars("Worksheet Menu Bar").Controls("Data").Controls("Sort...").Enabled = False End Sub