View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Condititional Formatting Range Address

Perhaps:

Dim rng as Range
On Error Resume Next
set rng = Cells.SpecialCells(xlCellTypeAllFormatConditions)
On Error goto 0
if not rng is nothing then
rng.select
End if

--
Regards,
Tom Ogilvy


Jim wrote in message
...
I have a Worksheet with conditional formattting
on it. Is there a VB method to determine the
range used by the conditional formattting? There
are no named ranges that I can find.

Thanks in advance,
Jim