Reputation: 907
Is the a way to use find and replace in excel formulas. Like I have a formula in some cells like this:
GETPIVOTDATA("Sales", $A$4, "Region", "South")
I want to replace Sales
to New_Sales
Is it possible to do that?
Upvotes: 6
Views: 77458
Reputation: 3875
If it is really all the formulas in the sheet it will be easy to use the normal find and replace. If not, use the below approach,
Ctrl + H
and follow the normal find and replace processThis approach is to make sure that you modify the formulas that you need and not all others
Upvotes: 12
Reputation: 46
You can use find and replace (Ctrl + Shift + H or on the Home Ribbon, click on the Find & Select button under editing).
Once the form pops open, select Look In "Formulas" and then type in the Find what and Replace with values. e.g. Sales and New_Sales.
You can choose to replace just the one found or replace all. Ifo you make a mistake you can always undo.
Upvotes: 0