Aug 2, 2010 #1 coltaalex Technical User Jul 2, 2010 61 US I have an excel sheet and i want to highlight or select all the conditional formatting cells it is possible ? i want to see what cells contain CF
I have an excel sheet and i want to highlight or select all the conditional formatting cells it is possible ? i want to see what cells contain CF
Aug 2, 2010 1 #2 PHV MIS Nov 8, 2002 53,708 FR A starting point: Code: For Each fc In Cells.FormatConditions fc.AppliesTo.Interior.ColorIndex = 8 ' Cyan Next Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote
A starting point: Code: For Each fc In Cells.FormatConditions fc.AppliesTo.Interior.ColorIndex = 8 ' Cyan Next Hope This Helps, PH. FAQ219-2884 FAQ181-2886
Aug 2, 2010 Thread starter #3 coltaalex Technical User Jul 2, 2010 61 US PHV , why color index =8 ? i have different colors, Thank you !! Upvote 0 Downvote
Aug 2, 2010 1 #4 combo Technical User Jan 1, 2003 4,176 PL To select cells: Code: ActiveSheet.Cells.SpecialCells(xlCellTypeAllFormatConditions).Select An error occurs when there is no conditional formatting. You can select cells without vba with (up to excel 2003 menu) Edit>Goto>>Special.. dialog. combo Upvote 0 Downvote
To select cells: Code: ActiveSheet.Cells.SpecialCells(xlCellTypeAllFormatConditions).Select An error occurs when there is no conditional formatting. You can select cells without vba with (up to excel 2003 menu) Edit>Goto>>Special.. dialog. combo
Aug 2, 2010 Thread starter #5 coltaalex Technical User Jul 2, 2010 61 US , how can i do it in excel 2007 Upvote 0 Downvote
Aug 2, 2010 Thread starter #6 coltaalex Technical User Jul 2, 2010 61 US i fount it , thank you very much !!! Upvote 0 Downvote