Mightystomp
Board Regular
- Joined
- Jan 31, 2006
- Messages
- 50
I would like to be able to colourcode the tabs for sheets. In addition it would be nice to be able to group theese tabs.
In addition to von pookie's method, from the menu Format | Sheet | Tab Color...I would like to be able to colourcode the tabs for sheets.
If you mean be able to impact more than one sheet, then you can hold down your shift key and click a second tab to select two or more adjacent sheets. To select 2+ nonadjacent sheets hold down your Ctrl key while clicking tabs. To select all you r-click the tabs and pick "Select All Sheets" from the popup. When you have multiple sheets selected, if you right-click on the tab, the top option becomes "Ungroup Sheets". "Grouping" does not create a lasting "group" like you used to be able to do in Quattro Pro (if memory serves, it has been nine years since last I used Quattro); nor does it create a line below the tabs. It is a transient "selection" activity.In addition it would be nice to be able to group theese tabs.
That would only take a 1-line macro.We want a box that will allow you to choose how many to insert rather than adding one at a time.
-DauntingGecko
Sub InsertRows()
ActiveCell.Resize(InputBox("How many rows do you want to insert", "Insert Rows", 2)).EntireRow.Insert
End Sub
I can see where that might come in handy from time to time. You could probably do a work-around using custom buttons and VBA if you really, really wanted it. But always nicer to have such things built in.What I wanted was a way to group sheets in the same way as group rows/columns works. i.e. hide/unhide subsheets.
-MightyStomp