How can I loop through all Formula in a workbook?
This works for me
Dim cell As Range
For Each cell In Cells.SpecialCells(xlCellTypeFormulas)
Debug.Print cell.Address
Next cell
--
HTH
Bob Phillips
(remove nothere from email address if mailing direct)
"Peter" wrote in message
...
I tried Cells.SpecialCells(.... xlCellTypeFormulas...) but no luck.
Anyone have this code snippet?
Thanks,
|