I'm working with a huge Excel file and I want to change some cells with static text to dynamically change based on what the user enters in another tab. Because the file is so large I'm looking for a way to make the modification using "find and replace" or some other solution rather than manually making the change to the 1000 cells that I want to modify.
Here's an example of the original and what I want it to read:
Original static cell text: Average distance between Outpatient Care site and Group-Area
Reads as: Average distance between Outpatient Care site and Group-Area
Manual modification for dynamic cell text: ="Average distance between Outpatient Care site and " &'D1 Background'!F21
Reads as: Average distance between Outpatient Care site and District
where, D1 Background!F21 is the user-entered term "District"
I have many cells that I want to change the term "Group-Area" into the locally relevant term entered by the user. In this case it's "District", in other cases it might be "State" or "Province". Is there some way to automatically make this change to dynamic text throughout the entire workbook?
Bookmarks