Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
For many years Lotus 1-2-3 has had a feature which allows you to see
at a glance which cells in a spreadsheet have numbers typed in and which ones are the results of a formula. The cells with formulas will have a small grey dot in the lower left hand corner to indicate that the contents of the cell are not the same as the value of the cell. My question is, does Excel has a similar feature? I realize I could turn on the formula view or whatever it's called to see the actual formula in each cell instead of the result, but I merely want to know which cells contain a formula, I don't need to see what the formula is. Thanks, John W. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How about creating a UDF called IsFormula, and then using that in
conditional formatting on the cells? Function IsFormula(rng As Range) If rng.Count 1 Then IsFormula = CvErr(xlErrRef) Else IsFormula = rng.HasFormula End If End Function -- HTH Bob Phillips (remove nothere from email address if mailing direct) "John W." wrote in message ... For many years Lotus 1-2-3 has had a feature which allows you to see at a glance which cells in a spreadsheet have numbers typed in and which ones are the results of a formula. The cells with formulas will have a small grey dot in the lower left hand corner to indicate that the contents of the cell are not the same as the value of the cell. My question is, does Excel has a similar feature? I realize I could turn on the formula view or whatever it's called to see the actual formula in each cell instead of the result, but I merely want to know which cells contain a formula, I don't need to see what the formula is. Thanks, John W. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
2 Nesting questions | Excel Worksheet Functions | |||
Match then lookup | Excel Worksheet Functions | |||
Formula Problem - interrupted by #VALUE! in other cells!? | Excel Worksheet Functions | |||
Formula checking multiple worksheets | Excel Worksheet Functions | |||
Match / Vlookup within an Array formula | Excel Discussion (Misc queries) |