値が異なる2つのシートがあります。sheet2 の 1 つの 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*
どうもありがとう!