Is it possible to use SUBSTITUTE (or some other method) using a list of inputs?
For example, my target cell contains the string
[TABLE="width: 500"]
<tbody>[TR]
[TD] I love Apples, I hate Orange, my Banana, my Grape[/TD]
[/TR]
</tbody>[/TABLE]
and on another sheet I have a ranged list:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Apple[/TD]
[TD]Red[/TD]
[/TR]
[TR]
[TD]Orange[/TD]
[TD]Orange[/TD]
[/TR]
[TR]
[TD]Banana[/TD]
[TD]Yellow[/TD]
[/TR]
[TR]
[TD]Grape[/TD]
[TD]Green[/TD]
[/TR]
</tbody>[/TABLE]
I'm looking for way to get a result of
[TABLE="width: 500"]
<tbody>[TR]
[TD][TABLE="width: 500"]
<tbody>[TR]
[TD]I love Red, I hate Orange, my Yellow, my Green[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
</tbody>[/TABLE]
Obviously I could nest SUBSTITUTE, by my real list contains over 200 entries!
I tried this: =SUBSTITUTE(GF39,NAMES!A:A,NAMES!C:C) but to no avail.
Help? I'm programmer so I can always fall back to VBA, but I figured you guys might know a built-in way to do this.
For example, my target cell contains the string
[TABLE="width: 500"]
<tbody>[TR]
[TD] I love Apples, I hate Orange, my Banana, my Grape[/TD]
[/TR]
</tbody>[/TABLE]
and on another sheet I have a ranged list:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Apple[/TD]
[TD]Red[/TD]
[/TR]
[TR]
[TD]Orange[/TD]
[TD]Orange[/TD]
[/TR]
[TR]
[TD]Banana[/TD]
[TD]Yellow[/TD]
[/TR]
[TR]
[TD]Grape[/TD]
[TD]Green[/TD]
[/TR]
</tbody>[/TABLE]
I'm looking for way to get a result of
[TABLE="width: 500"]
<tbody>[TR]
[TD][TABLE="width: 500"]
<tbody>[TR]
[TD]I love Red, I hate Orange, my Yellow, my Green[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
</tbody>[/TABLE]
Obviously I could nest SUBSTITUTE, by my real list contains over 200 entries!
I tried this: =SUBSTITUTE(GF39,NAMES!A:A,NAMES!C:C) but to no avail.
Help? I'm programmer so I can always fall back to VBA, but I figured you guys might know a built-in way to do this.