I'm wondering if there is a way to turn off options in the toolbar and layout such as hiding the Column lines, turning off certain bars, etc..and then have this attached to a certain workbook only..
So that when that workbook is open all of those toolbar settings are used, but then when other excel files are opened it reverts back to the default toolbars..
Thanks in advance.
There is,but it's not recommended because if Excel crashes then your user's settings willbe messed up. Result,one unhappy user
Hope that helps.
RoyUK
--------
If you are pleased with a member's answer then use the Star icon to rate it, if you are pleased enough to part with cash consider a donation to Children in Need
For Excel consulting, free examples and tutorials visit Excel Consulting-Excel VBA
Check out the free Excel Toolbar
New members please read & follow the Forum Rules
Remember to mark your questions Solved and rate the answer(s)
Code Tags: Make your code easier for us to read
What causes a crash?
Im the only one using the files..I just hate having to turn my toolbars on and off and change them based on what I am doing..but I guess it might be the best thing to do if it crashes.
Anything can cause a crash, I personally have my ToolBars set up as I want & maintain them that way.
What is you want to change?
Are you actually using Excel 2007? If you are then there are no Toolbars to alter. If not you've posted in the wrong Forum
Hope that helps.
RoyUK
--------
If you are pleased with a member's answer then use the Star icon to rate it, if you are pleased enough to part with cash consider a donation to Children in Need
For Excel consulting, free examples and tutorials visit Excel Consulting-Excel VBA
Check out the free Excel Toolbar
New members please read & follow the Forum Rules
Remember to mark your questions Solved and rate the answer(s)
Code Tags: Make your code easier for us to read
I might have been confusing with my question..and yes I am using Excel 2007
I'm referring to options such as turning off the gridlines, or hiding the toolbar altogether, etc.
Some documents I want some options to show.
To simplify just say I had two documents that I use, one I want gridlines the other I don't..is there a way to make each document save the settings I change (gridlines showing) in each..or is this cross all excel only.
This is a rather simple example but it better explains what I meant, I think.
Depending on exactly what you want to do you maybe able to use vba code.
If you place this in your file it will turn gridlines off for that file.
Or you may need to use Ribbonx xml to fully control the ribbon.Code:Private Sub Workbook_Open() With Application.CommandBars If .GetPressedMso("ViewGridlinesToggleExcel") Then .ExecuteMso "ViewGridlinesToggleExcel" End If End With End Sub
The gridlines settings is specific to each sheet in a workbook and is saved with that workbook.
So long, and thanks for all the fish.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks