Thread
:
macro to find all formulas in a workbook
View Single Post
#
2
Posted to microsoft.public.excel.misc
Gary''s Student
external usenet poster
Posts: 11,058
macro to find all formulas in a workbook
For the active sheet in yellow:
Sub dave()
Set r = ActiveSheet.UsedRange.SpecialCells(xlCellTypeFormu las)
r.Interior.ColorIndex = 6
End Sub
--
Gary''s Student
gsnu200711
Reply With Quote
Gary''s Student
View Public Profile
Find all posts by Gary''s Student