我有 2 张不同值的床单。我需要从 sheet2 中的一个 cell.sheet1 中找到一个值,并将值从 nextcell_in_the_same_row.sheet1 复制到 nextcell_in_the_same_row.sheet2。很难解释让我们看看下面的例子。
例如之前
first sheet:
A B
1 aaa 123
2 bbb 456
3 ccc 789
4 ddd 122
second sheet:
A B
1 aaa
2 ada
3 cca
4 ccc
后
first sheet:
A B
1 aaa 123
2 bbb 456
3 ccc 789
4 ddd 122
second sheet:
A B
1 aaa *need to find value in the first sheet and copy value from B2 because aaa in A1*
2 ada *value does not exist in the first sheet so copy nothing*
3 cca *not need to copy because no value in the first sheet*
4 ccc *need to copy the value from B3*
非常感谢!