Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default Conditional Format - How to View???

Is there an easy way to view the conditional format for a cell without going
in to 'FORMAT' then 'CONDITIONAL FORMAT' on the tool bar? Someone played
with the conditional format for a number of cells on a spreadsheet, and I
want to audit each cell of a rather large worksheet. I was hoping there was
a way to view each cell more easily. Thanks. -Bill
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Conditional Format - How to View???

--Press function key F5 to open the 'Goto' dialog
--Press 'Special' button (left bottom)
--Select 'Conditional Formatting'
will select all cells with conditional formatting


Try this UDF (User Defined function). From workbook launch VBE using
Alt+F11. From menu Insert a Module and paste the below function.Close and get
back to workbook and try the below formula.

If A1 cell is condional formtted; if you want to review the CF formula use
the below formula in cell B1 to return the 1st CF formula

=GetCFFormula(A1,1)

'to return the 2nd CF formula
=GetCFFormula(A1,2)


Function GetCFFormula(rngTemp As Range, intIndex As Integer) As String
If rngTemp.FormatConditions.Count = intIndex Then
GetCFFormula = rngTemp.FormatConditions(intIndex).Formula1
End If
End Function

--
Jacob (MVP - Excel)


"Bill E" wrote:

Is there an easy way to view the conditional format for a cell without going
in to 'FORMAT' then 'CONDITIONAL FORMAT' on the tool bar? Someone played
with the conditional format for a number of cells on a spreadsheet, and I
want to audit each cell of a rather large worksheet. I was hoping there was
a way to view each cell more easily. Thanks. -Bill

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
View Conditional Formats on worksheet? Bill E Excel Discussion (Misc queries) 4 May 27th 10 10:33 PM
Cannot view Format tab New to 2007[_2_] Excel Discussion (Misc queries) 2 October 28th 08 04:54 AM
Format a New View? Jayne Mae Excel Discussion (Misc queries) 5 October 22nd 07 12:10 PM
remove view format Gina_Louisville Excel Discussion (Misc queries) 2 November 9th 06 04:45 PM
How can I view a document that is PDF format ? Edith Excel Discussion (Misc queries) 1 August 1st 06 01:51 AM


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