Formula Indicator?

J

John W.

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.
 
B

Bob Phillips

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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top