Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 94
Default Find cells that are conditionally formatted

Is there a way in which to find all cells on a worksheet that have
conditional formatting applied to them?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,420
Default Find cells that are conditionally formatted

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 94
Default Find cells that are conditionally formatted

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Find cells that are conditionally formatted

Edit Goto Special... conditional formats
--
Gary''s Student - gsnu200799
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default Find cells that are conditionally formatted

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
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
Conditionally Formatted Cells amy Excel Discussion (Misc queries) 1 February 23rd 08 07:28 AM
Can you add the number of conditionally formatted cells?? Lost Excel Worksheet Functions 1 January 23rd 07 06:31 AM
Selecting cells that have been conditionally formatted [email protected] Excel Discussion (Misc queries) 8 October 16th 06 10:37 AM
Counting conditionally formatted cells Kebbon Excel Worksheet Functions 2 October 12th 06 01:48 PM
how do i concatenate conditionally formatted cells in excel Sandwiches2 Excel Worksheet Functions 0 March 14th 06 01:42 AM


All times are GMT +1. The time now is 01:08 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"