Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I have a workbook with 25 worksheets The first sheet is my "template" The question is, When I change something in the template sheet, layout/color of a cell, with of a column, validation of a range of cells....I want it to be changed in all sheets. How can this be done? Thanks JP |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You have to Group the sheets before you make the changes. There's more
information in Help. Beware, this can be dangerous if you forget to ungroup the sheets before you begin to enter data. On Tue, 19 Oct 2004 20:50:45 GMT, "Jean-Paul De Winter" wrote: Hi, I have a workbook with 25 worksheets The first sheet is my "template" The question is, When I change something in the template sheet, layout/color of a cell, with of a column, validation of a range of cells....I want it to be changed in all sheets. How can this be done? Thanks JP |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() if you select several sheets (or all) the window caption will change to Myfile.xls [Group] and the tabs are "highlighted" (white with my scheme) Then: when you make changes in the activesheet those changes are made to all (grouped) sheets. However not all menu's etc are available in grouped mode... ANd it's easy to forget you are in "grouped mode" so be careful. Another alternative is to let the macrorecorder run when you make your changes.... Review the recorded code then run it on the other sheets. Sub DoIt() Dim i%, sProc$ sProc = InputBox("Which macro?", , "Macro1") If sProc < "" Then For i = 2 To Worksheets.Count Worksheets(i).Activate Run (sProc) Next End If keepITcool < email : keepitcool chello nl (with @ and .) < homepage: http://members.chello.nl/keepitcool "Jean-Paul De Winter" wrote: Hi, I have a workbook with 25 worksheets The first sheet is my "template" The question is, When I change something in the template sheet, layout/color of a cell, with of a column, validation of a range of cells....I want it to be changed in all sheets. How can this be done? Thanks JP |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can I switch from Office 2007 layout to the old 2003 layout? | Excel Discussion (Misc queries) | |||
Copy rows of data (eliminating blank rows) from fixed layout | Excel Discussion (Misc queries) | |||
How do I get/copy the (same) layout from a linked worksheet? | Excel Worksheet Functions | |||
I want to copy only the layout and formulas and not the exisiting | Excel Discussion (Misc queries) | |||
Copy layout to all worksheets | Excel Programming |