#1   Report Post  
Posted to microsoft.public.excel.misc
John W.
 
Posts: n/a
Default Formula Indicator?

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   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default Formula Indicator?

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
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
2 Nesting questions Starchaser Excel Worksheet Functions 7 January 20th 06 06:53 PM
Match then lookup Tenacity Excel Worksheet Functions 9 December 3rd 05 05:30 AM
Formula Problem - interrupted by #VALUE! in other cells!? Ted Excel Worksheet Functions 17 November 25th 05 05:18 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 03:28 AM
Match / Vlookup within an Array formula Hari Prasadh Excel Discussion (Misc queries) 3 February 3rd 05 04:37 PM


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