A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Hi @Joseph Burns,
For your concern, this is not a bug but an expected behavior of INDIRECT() in Excel. INDIRECT() can resolve a single-sheet cell reference like INDIRECT("'Sheet 1'!R2C2",FALSE)) and INDIRECT("'Sheet 2'!R2C2",FALSE)) but it cannot interpret a 3-D reference 'Sheet 1:Sheet 2'!R2C2 as a valid one so it returns #REF! error.
Refer to Create a 3-D reference to the same cell range on multiple worksheets - Microsoft Support, INDIRECT() is not listed as a supported formula with 3-D reference. Therefore, in your case, I suggest:
- If you want to use a direct 3-D reference, use only
SUM('Sheet 1:Sheet2'!R2C2). - If you want to use INDIRECT(), you should build separate call per sheet and then sum them later. For example
=SUM(INDIRECT("'Sheet 1'!R2C2",FALSE),INDIRECT("'Sheet 2'!R2C2",FALSE))
Hope my sharing maybe helpful for your concern. If you have any questions or need further assistance, please feel free to share them in the comments on this post so I can continue to support you.
Thank you for your understanding and cooperation. I'm looking forward to your reply.
If the answer is helpful, please click "Accept Answer" and kindly upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread