G Guest Nov 8, 2004 #1 Is there a way using VBA to create a macro that will disable the Styles an Formating toolbar and button to access it.
Is there a way using VBA to create a macro that will disable the Styles an Formating toolbar and button to access it.
G Guest Nov 8, 2004 #2 This macro will do it: Sub DisableFormattingToolbar() CommandBars("Formatting").Enabled = False End Sub You may have to set it to happen when the workbook opens, if you want this to happen when a user opens the book. tj
This macro will do it: Sub DisableFormattingToolbar() CommandBars("Formatting").Enabled = False End Sub You may have to set it to happen when the workbook opens, if you want this to happen when a user opens the book. tj