私のスプレッドシートは次のように設定されています。
シート1:
列A:セルA2から始まる一意の英数字値
列B-英数字(一意ではない)
シート2:
列A:セルA2から始まる一意の英数字値
列B:空
Sheet1.ColumnA
とを比較する関数が必要です。Sheet2.ColumnA
一致するものが見つかったら、からSheet1.ColumnB
にデータをコピーしますSheet2.ColumnB
。
前もって感謝します。
this is done through VLOOKUP()
.
In this case you should put in your sheet2 column B the following function (write in B2 and then drag it to the end):
=IFERROR(VLOOKUP(A2,Sheet1!A:B,2,FALSE),"")
VLOOKUP()
is a very powerful function for all these kind of problems which a lot of "normal" Excel users have each day.
The IFERROR()
Is used for those cases where the unique ID in sheet2 cannot be found in the table on sheet1.