Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How about:
Sub formatter() Set rcon = Nothing For Each r In ActiveSheet.UsedRange If r.FormatConditions.Count 0 Then If rcon Is Nothing Then Set rcon = r Else Set rcon = Union(rcon, r) End If End If Next If rcon Is Nothing Then Else rcon.Select End If End Sub -- Gary''s Student - gsnu200761 "todtown" wrote: I have been given a workbook that has conditional formats ALL throughout. I want to see which cells have them so I can decide to keep them, turn them off, change them, etc. Is there a way similar to SpecialCells that I can use to select all cells with Conditional Formatting set? tod |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Sorting Cells with Conditional Formats | Excel Discussion (Misc queries) | |||
Sorting Cells with Conditional Formats | Excel Discussion (Misc queries) | |||
Conditional Formats to ignore blank cells | Excel Worksheet Functions | |||
conditional formats for cells | Excel Worksheet Functions | |||
conditional formats affect other cells | Excel Discussion (Misc queries) |