我试图在第一个...的基础上使用限定符来引用另一个工作表中的数据。
Sheet 1, A1 = Age of Store (months)
Sheet 1, B1 = New Sales projections (Reference Sheet 2, D1 information here based off of month number in column A)
根据商店的年龄(月份),我需要它来参考表2和相应列中的数据。
Sheet 2, A1 = Month 1, projected numbers
Sheet 2, B1 = Month 2, projected numbers
Sheet 2, C1 = Month 3, projected numbers
Sheet 2, D1 = Month 4, projected numbers
等
答案 0 :(得分:1)
在Sheet1的B1中:
=INDEX('Sheet2'!1:1,,A1)
这将返回A1
的第1行(1:1
)Sheet2
中给出的列中的条目。 INDEX
的语法为INDEX(<array>,<row>,[<col>])
。