As I use a lot of formulas in an Analysis spreadsheet, I need to be able to search the formulas in all cells in all sheets for any cell with the specified search text, preferably case-insensitive.
For example, search for "ce-z", and find all cells that has the formula: "=vlookup(round(D29,0),Sails_Sheet, match("CE-z",Sails_Sheet_Headers, 0),false)"
Unfortunately, Class TextFinder does not do this.
Is there a way to loop through every cell in every sheet and examine it's function?
"ce-z", and find all cells that has the formula: "=vlookup(round(D29,0),Sails_Sheet, match("CE-z",Sails_Sheet_Headers, 0),false)"
. You want to search force-z
or for this formula? – soMario