Excel 中的公式根据单元格引用引用另一个 Excel 文件
我想创建一个引用另一个 Excel 文件中的单元格的公式。我的计算如下:
='C:\Users\17\Desktop\[JAN-11 2011.xlsx]1'!$H$44
但由于此工作表中的单元格 L1 是设置为月份的数据单元格,因此它显示当前月份,所以我希望能够执行如下操作:
='C:\Users\17\Desktop\[&L1& 2011.xlsx]1'!$H$44
但这不起作用。如何让此功能在单元格 L1 上运行?
I want to make a formula that references a cell in another excel file. I have figured that out as below:
='C:\Users\17\Desktop\[JAN-11 2011.xlsx]1'!$H$44
But as the cell L1 in this worksheet is Data cell set to month so it show current month so I want to be able to do something as below:
='C:\Users\17\Desktop\[&L1& 2011.xlsx]1'!$H$44
but this is not working. How do I get this function to work off of the cell L1?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您可以使用兰斯·罗伯茨的建议,但将其包含在
INDIRECT()
函数中,如下所示:=INDIRECT('C:\Users\17\Desktop[' & L1 & ; '2011.xlsx]1'!$H$44)
I think you could use Lance Roberts suggestion, but include it in a
INDIRECT()
function, like this:=INDIRECT('C:\Users\17\Desktop[' & L1 & ' 2011.xlsx]1'!$H$44)
尝试使用字符串连接,如下所示:
Try using string concatenation like so: