Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 54
Default Applying worksheet formatting to all sheets in workbook

I have a workbook with 12 worksheets. It is still in develoment so I am
making changes to the formatting to get it the way I want. The changes I
make are on the active sheet. How do I apply the changes to all the sheets
so I don't have to delete them and then Copy the current sheet 11 times
everytime I make a change?

--
Thanks!


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,117
Default Applying worksheet formatting to all sheets in workbook

you could do it one of two ways. one would be a macro, such as this:

Sub format()
Dim ws as Worksheet

For Each ws In ActiveWorkbook.Worksheets
ws.Range("a1").Font.Bold = True
Next ws

End Sub


the other way would be to select all the worksheets manually, complete
your formatting, and then unselect them.

hope that helps!
:)
susan


On Jan 8, 11:37*am, "Saucer Man" wrote:
I have a workbook with 12 worksheets. *It is still in develoment so I am
making changes to the formatting to get it the way I want. *The changes I
make are on the active sheet. *How do I apply the changes to all the sheets
so I don't have to delete them and then Copy the current sheet 11 times
everytime I make a change?

--
Thanks!


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 54
Default Applying worksheet formatting to all sheets in workbook

Selecting the sheets manually before I make the changes is what I was
looking for. I didn't know you could do that. Thanks.


"Susan" wrote in message
...
you could do it one of two ways. one would be a macro, such as this:

Sub format()
Dim ws as Worksheet

For Each ws In ActiveWorkbook.Worksheets
ws.Range("a1").Font.Bold = True
Next ws

End Sub


the other way would be to select all the worksheets manually, complete
your formatting, and then unselect them.

hope that helps!
:)
susan


On Jan 8, 11:37 am, "Saucer Man" wrote:
I have a workbook with 12 worksheets. It is still in develoment so I am
making changes to the formatting to get it the way I want. The changes I
make are on the active sheet. How do I apply the changes to all the sheets
so I don't have to delete them and then Copy the current sheet 11 times
everytime I make a change?

--
Thanks!




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,986
Default Applying worksheet formatting to all sheets in workbook

It is amazing what can be found in the help files.



"Saucer Man" wrote:

Selecting the sheets manually before I make the changes is what I was
looking for. I didn't know you could do that. Thanks.


"Susan" wrote in message
...
you could do it one of two ways. one would be a macro, such as this:

Sub format()
Dim ws as Worksheet

For Each ws In ActiveWorkbook.Worksheets
ws.Range("a1").Font.Bold = True
Next ws

End Sub


the other way would be to select all the worksheets manually, complete
your formatting, and then unselect them.

hope that helps!
:)
susan


On Jan 8, 11:37 am, "Saucer Man" wrote:
I have a workbook with 12 worksheets. It is still in develoment so I am
making changes to the formatting to get it the way I want. The changes I
make are on the active sheet. How do I apply the changes to all the sheets
so I don't have to delete them and then Copy the current sheet 11 times
everytime I make a change?

--
Thanks!





  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 172
Default Applying worksheet formatting to all sheets in workbook

On Thu, 8 Jan 2009 09:59:03 -0800, JLGWhiz
wrote:

It is amazing what can be found in the help files.


There is probably a wealth of information in the help files, however,
I have never been very successful at entering the right search string
because I rarely find what I'm looking for. Maybe I need to find the
time to read them from page 1 to page n :-(



John Keith



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,986
Default Applying worksheet formatting to all sheets in workbook

Learning to use the Excel and VBA terminology will increase the probablitiy
of finding what you need in the help files. For instance, Tab will no bring
up worksheet, but sheet or sheets will. Reading through the files does not
hurt and if you look you will find that there are actually reference manuals
electronically listed in the help facility of both Excel and VBA. They are
organized so that you can easily find information. If you don't see them
when you click on help, then click one of the left and right arrows at the
top of the help pane until they show up..

"John Keith" wrote:

On Thu, 8 Jan 2009 09:59:03 -0800, JLGWhiz
wrote:

It is amazing what can be found in the help files.


There is probably a wealth of information in the help files, however,
I have never been very successful at entering the right search string
because I rarely find what I'm looking for. Maybe I need to find the
time to read them from page 1 to page n :-(



John Keith


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
formatting sheets in a workbook SM_NCSW Excel Worksheet Functions 4 November 6th 08 10:03 PM
Applying conditional formatting to a workbook in excel 2003 kuroitenpi Excel Discussion (Misc queries) 1 November 29th 06 07:05 PM
Formatting All Sheets in a Workbook so I can Print SteveC Excel Programming 5 May 16th 06 10:07 PM
applying standard formatting to a worksheet neil Excel Programming 3 March 17th 05 04:59 PM
Formatting all sheets in a workbook to print the same mreed46112 Excel Discussion (Misc queries) 2 February 2nd 05 11:53 PM


All times are GMT +1. The time now is 05:54 AM.

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"