Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() The following macro will do this for you - i can e-mail you this as an addin is you want which will enable you to click on a toolbar button and use it in any spreadsheet Sub ShowFormulas() Dim cell As Range On Error Resume Next Application.ScreenUpdating = False Application.Calculation = xlCalculationManual For Each cell In Cells.SpecialCells(xlCellTypeConstants) If IsNumeric(cell.Value) Then cell.Interior.ColorIndex = 4 End If Next cell Application.Calculation = xlCalculationAutomatic End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Identify external references (in formulas) and color format | Excel Worksheet Functions | |||
How to identify offset data and execute multiple formulas | Excel Worksheet Functions | |||
Identify Text on two cells | Excel Discussion (Misc queries) | |||
How to identify text from a autofiltered list using formulas | Excel Worksheet Functions | |||
Identify cells with a value (excluding formulas) | Excel Discussion (Misc queries) |