如何使用存储在相对于另一个单元格中的值的位置的信息填充单元格?

How to populate a cell with information stored in a location relative to the value in another cell?

假设我有

Sheet 1
   A   B   C  
1  #   20  30
2  #   75  90
3  #   46  21

Sheet 2
   A   B   C  
1  X       Y

其中 "X" 是 Sheet 1 的 B 列的下拉列表。

"Y" 是我要在 Sheet 1 的相应行的 C 列中为 Sheet 2 的 A 列选择填写值的地方。

我该怎么做?

尝试:

=VLOOKUP(A1; 'Sheet 1'!B:C; 2; 0)

数组公式使用:

=ARRAYFORMULA(IFNA(VLOOKUP(A1; 'Sheet 1'!B:C; 2; 0)))

在C1试试

=IF(LEN(A1), VLOOKUP(A1, Sheet1!B:C, 2, 0),)