Feb 19 2024 07:41 AM
Been churning through a project for work and I’m missing one piece.
If I have a workbook name 010203 and i link it, it displays as:
’[010203.xlsx]Sheet1’!$A$1
If I have another workbook and fill the value of a cell with:
B1 = 010203
Is it possible to recall the original workbook with:
’[ B1 .xlsx]Sheet1’!$A$1
My first reaction was to try CONCAT but no luck.
Feb 19 2024 07:48 AM
SolutionYou can use INDIRECT, but please note that it will only work if the workbook referred to is open in Excel too.
=INDIRECT("'[" & B1 & ".xlsx]Sheet1'!A1")
Feb 19 2024 08:13 AM
Feb 19 2024 08:58 AM
Not with a formula. Perhaps it's possible using PowerQuery, but I'm not an expert on that.
Feb 19 2024 12:52 PM
Feb 19 2024 07:48 AM
SolutionYou can use INDIRECT, but please note that it will only work if the workbook referred to is open in Excel too.
=INDIRECT("'[" & B1 & ".xlsx]Sheet1'!A1")