Reference an excel sheet from another workbook without copying the sheet

后端 未结 2 1421
时光说笑
时光说笑 2020-12-11 12:00

Im wondering if it\'s possible to reference an excel sheet from another work book without making a copy of that sheet?

The situation : I have some very large workshe

2条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-11 12:21

    =SUM('C:\test\[test.xlsx]sheet_name'!A1:A25)
    

    is an example of a formula which references sheet sheet_name in workbook C:\test\text.xlsx.

    Note that when the other workbook is opened, the formula automatically changes to

    =SUM([test.xlsx]sheet_name!A1:A25)
    

    and then when it is closed, the formula will change back.

提交回复
热议问题