Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 46
Default Copy layout to all worksheets

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 863
Default Copy layout to all worksheets

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,253
Default Copy layout to all worksheets



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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can I switch from Office 2007 layout to the old 2003 layout? samanthajade Excel Discussion (Misc queries) 3 May 11th 08 09:40 PM
Copy rows of data (eliminating blank rows) from fixed layout Sweepea Excel Discussion (Misc queries) 1 March 13th 07 11:05 PM
How do I get/copy the (same) layout from a linked worksheet? Bob Excel Worksheet Functions 3 July 28th 05 02:22 PM
I want to copy only the layout and formulas and not the exisiting edv Excel Discussion (Misc queries) 1 June 10th 05 12:08 PM
Copy layout to all worksheets Jean-Paul De Winter Excel Programming 3 October 14th 04 10:55 PM


All times are GMT +1. The time now is 11:55 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"