View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default 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