Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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. . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Split a cell diagonally and apply a different conditional format. | Excel Worksheet Functions | |||
apply conditional format to time | Excel Worksheet Functions | |||
how to apply the same header or footer to all sheets in workbook | Excel Worksheet Functions | |||
How to apply a format to an entire workbook | Excel Worksheet Functions | |||
How to apply a format to an entire workbook | Excel Worksheet Functions |