Hello - thanks for the help in advance.
I have cells that follow this format:
qual RES1 'Restaurant' = 'Five Guys/Burger {US}'
qual GY1 'Gym' = 'Planet Fitness'
qual LOC1 'Location' = 'New York/{Bronx, Brooklyn}'
concept 'Example 1'
where 'School' = 'Syracuse University'
and RES1
and 'Meal Type' = 'Dinner'
concept 'Example 2'
where GY1
and 'Day' = 'Wednesday'
and LOC1
Above is just an example, but all my cells will follow a similar format. What i need done:
I want all of the qual values at the top to be replaced by their full values throughout the cell. So if in the cell, there is a reference to GY1, I want it to read 'Gym' = 'Planet Fitness'
So in the above, my desired output would look like:
qual RES1 'Restaurant' = 'Five Guys/Burger {US}'
qual GY1 'Gym' = 'Planet Fitness'
qual LOC1 'Location' = 'New York/{Bronx, Brooklyn}'
concept 'Example 1'
where 'School' = 'Syracuse University'
and 'Restaurant' = 'Five Guys/Burger {US}'
and 'Meal Type' = 'Dinner'
concept 'Example 2'
where 'Gym' = 'Planet Fitness'
and 'Day' = 'Wednesday'
and 'Location' = 'New York/{Bronx, Brooklyn}'
Please note the three quals above are examples and my quals will be different, however they will follow the same format and be at the top of the cell. they represent a key that is referenced throughout my cells. I want basically a find and replace done with the qual values throughout the cell.