ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Apply Conditional Format to all sheets in same workbook (https://www.excelbanter.com/excel-discussion-misc-queries/255916-apply-conditional-format-all-sheets-same-workbook.html)

Der Musensohn

Apply Conditional Format to all sheets in same workbook
 
Is there a way to apply a conditional rule to all of the worksheets in a
workbook? In other words, the cell range and format is the same for each
sheet but I'd prefer not to create the rule for 40 pages.

Thank you in advance.

Jim Thomlinson

Apply Conditional Format to all sheets in same workbook
 
A CF is a format like any other format. Create one page and then copy and
paste to the rest of the pages...
--
HTH...

Jim Thomlinson


"Der Musensohn" wrote:

Is there a way to apply a conditional rule to all of the worksheets in a
workbook? In other words, the cell range and format is the same for each
sheet but I'd prefer not to create the rule for 40 pages.

Thank you in advance.


Der Musensohn

Apply Conditional Format to all sheets in same workbook
 
Thank you Jim. The problem is that I already have individual data on each
worksheet. Specifically what I'm trying to do is hide all zeros from each
page for a specific cell range. I had simply formatted all zeros to have a
white font color. If you know of a macro or formatting code of some sort I
have some experience working with codes. I'd need to know where to paste it
and than I can make specifice reference changes after that.

Thanks.

"Jim Thomlinson" wrote:

A CF is a format like any other format. Create one page and then copy and
paste to the rest of the pages...
--
HTH...

Jim Thomlinson


"Der Musensohn" wrote:

Is there a way to apply a conditional rule to all of the worksheets in a
workbook? In other words, the cell range and format is the same for each
sheet but I'd prefer not to create the rule for 40 pages.

Thank you in advance.


Gord Dibben

Apply Conditional Format to all sheets in same workbook
 
Sub white_zero()
Dim WS As Worksheet
For Each WS In ThisWorkbook.Worksheets
For Each c In WS.Range("A1:B20")
If c.Value = 0 Then
c.Font.ColorIndex = 2
End If
Next c
Next WS
End Sub


Gord Dibben MS Excel MVP


On Mon, 22 Feb 2010 08:45:01 -0800, Der Musensohn
wrote:

Thank you Jim. The problem is that I already have individual data on each
worksheet. Specifically what I'm trying to do is hide all zeros from each
page for a specific cell range. I had simply formatted all zeros to have a
white font color. If you know of a macro or formatting code of some sort I
have some experience working with codes. I'd need to know where to paste it
and than I can make specifice reference changes after that.

Thanks.

"Jim Thomlinson" wrote:

A CF is a format like any other format. Create one page and then copy and
paste to the rest of the pages...
--
HTH...

Jim Thomlinson


"Der Musensohn" wrote:

Is there a way to apply a conditional rule to all of the worksheets in a
workbook? In other words, the cell range and format is the same for each
sheet but I'd prefer not to create the rule for 40 pages.

Thank you in advance.



Der Musensohn

Apply Conditional Format to all sheets in same workbook
 
Got it. Thanks Gord.

"Gord Dibben" wrote:

Sub white_zero()
Dim WS As Worksheet
For Each WS In ThisWorkbook.Worksheets
For Each c In WS.Range("A1:B20")
If c.Value = 0 Then
c.Font.ColorIndex = 2
End If
Next c
Next WS
End Sub


Gord Dibben MS Excel MVP


On Mon, 22 Feb 2010 08:45:01 -0800, Der Musensohn
wrote:

Thank you Jim. The problem is that I already have individual data on each
worksheet. Specifically what I'm trying to do is hide all zeros from each
page for a specific cell range. I had simply formatted all zeros to have a
white font color. If you know of a macro or formatting code of some sort I
have some experience working with codes. I'd need to know where to paste it
and than I can make specifice reference changes after that.

Thanks.

"Jim Thomlinson" wrote:

A CF is a format like any other format. Create one page and then copy and
paste to the rest of the pages...
--
HTH...

Jim Thomlinson


"Der Musensohn" wrote:

Is there a way to apply a conditional rule to all of the worksheets in a
workbook? In other words, the cell range and format is the same for each
sheet but I'd prefer not to create the rule for 40 pages.

Thank you in advance.


.



All times are GMT +1. The time now is 02:17 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com