我有一个超过 3000 行的电子表格,我想将 A 列中的特定值(v1,v2,...)替换为 B 列和 C 列中的内容,然后...
B、C、...列的内容长度不固定,因此无法使用 Excel 中提供的 REPLACE 功能。
由于内容很长,因此也无法对每一行进行编辑。简单的例子:
A列
{who} is the coach of {team}
{who} is the coach of {team}
{who} is the coach of {team}
B栏
Alex Ferguson
Roberto Mancini
Rafael Benitez
C栏
Man United
Man City
Chelsea
D列
Alex Ferguson is the coach of Man United
Roberto Mancini is the coach of Man City
Rafael Benitez is the coach of Chelsea
D 列是我想要的(B 列替换 {who},c 列替换 {team})。