-1

私のスプレッドシートは次のように設定されています。

シート1:
列A:セルA2から始まる一意の英数字値
列B-英数字(一意ではない)

シート2:
列A:セルA2から始まる一意の英数字値
列B:空

Sheet1.ColumnAとを比較する関数が必要です。Sheet2.ColumnA一致するものが見つかったら、からSheet1.ColumnBにデータをコピーしますSheet2.ColumnB

前もって感謝します。

4

1 に答える 1

1

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.

于 2012-11-01T15:15:05.590 に答える