Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is there a way in which to find all cells on a worksheet that have
conditional formatting applied to them? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
See http://xldynamic.com/source/xld.CFConditions.html
-- __________________________________ HTH Bob "Code Numpty" wrote in message ... Is there a way in which to find all cells on a worksheet that have conditional formatting applied to them? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Guys! Many answers at the speed of light.
Gary''s Student easy and simple one was perfect for what I need. Thanks to you all. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Edit Goto Special... conditional formats
-- Gary''s Student - gsnu200799 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
This will produce a list of addresses with conditional formats in column A. Right click your sheet tab, view code and paste it in. Sub marine() x = 1 Set myrange = Cells.SpecialCells(xlCellTypeAllFormatConditions) For Each c In myrange Cells(x, 1).Value = c.Address x = x + 1 Next End Sub Mike "Code Numpty" wrote: Is there a way in which to find all cells on a worksheet that have conditional formatting applied to them? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Conditionally Formatted Cells | Excel Discussion (Misc queries) | |||
Can you add the number of conditionally formatted cells?? | Excel Worksheet Functions | |||
Selecting cells that have been conditionally formatted | Excel Discussion (Misc queries) | |||
Counting conditionally formatted cells | Excel Worksheet Functions | |||
how do i concatenate conditionally formatted cells in excel | Excel Worksheet Functions |