Related
I want to refer to a cell value in another closed workbook with a formula (not VBA!). The Sheet name is stored as a variable (in the following example, C13 is "Sheet2").
If the other file is open, then following works:
=INDIRECT("[myExcelFile.xlsm]" & C13 & "!$A$1")
If the file is closed, the above formula doesn't work, as there is no absolute path given. But I got it work with following (give attention to ' instead of ":
='C:\data\[myExcelFile.xlsm]Sheet2'!$A$1
Now I want to replace the hardcoded "Sheet2" with a dynamic referenced value, means with C13 (as seen in the first code snippet).
Does anybody know a solution without using VBA or other libraries?
There is definitively no way to do this with standard formulas. However, a crazy sort of answer can be found here. It still avoids VBA, and it will allow you to get your result dynamically.
First, make the formula that will generate your formula, but don't add the = at the beginning!
Let us pretend that you have created this formula in cell B2 of Sheet1, and you would like the formula to be evaluated in column c.
Now, go to the Formulas tab, and choose "Define Name". Give it the name myResult (or whatever you choose), and under Refers To, write =evaluate(Sheet1!$B2) (note the $)
Finally, go to C2, and write =myResult. Drag down, and... voila!
I too was looking for the answer to referencing cells in a closed workbook. Here is the link to the solution (correct formula) below. I have tried it on my current project (referencing a single cell and an array of cells) and it works well with no errors. I hope it helps you.
https://www.extendoffice.com/documents/excel/4226-excel-reference-unopened-file.html
In the formula, E:\Excel file\ is the full file path of the unopened workbook, test.xlsx is the name of the workbook, Sheet2 is the sheet name which contains the cell value you need to reference from, and A:A,2,1 means the cell A2 will be referenced in the closed workbook. You can change them based on your needs.
If you want to manually select a worksheet to reference, please use this formula
=INDEX('E:\Excel file\[test.xlsx]sheetname'!A:A,2,1)
After applying this formula, you will get a Select Sheet dialog box, please select a worksheet and then click the OK button. Then the certain cell value of this worksheet will be referenced immediately.
The problem is that a link to a closed file works with index( but not with index(indirect(
It seems to me that it is a programming issue of the index function.
I solved it with a if clause row
C2=sheetname
if(c2=Sheet1,index(sheet1....),if(C2="Sheet2",index(sheet2....
I did it over five sheets, it's a long formula, but does what I need.
Check INDEX Function:
=INDEX('C:\path\[file.xlsm]Sheet1'!A10:B20;1;1)
Thank you for the great question. I want to clarify and second the solution posted by Philipp. The solution does the following:
Updates data from a closed Excel file, and
Does so "dynamically" (though not exactly - you'll see)
In his answer above, Philipp said: "The problem is that a link to a closed file works with index( but not with index(indirect("
I believe this is still true. (I'm using Office 365 here in March of 2021. It would be so nice if Microsoft allowed INDIRECT and INDEX to play nicely together with closed files!)
I can confirm that Philipp's workaround indeed works, practically speaking. From the user's point of view, it feels like what Chris, the OP, wants to do.
Let's say you want the contents of a given cell to be drawn from Sheet1, Sheet2 or Sheet3, which are from a closed file myExcelFile.xlsm. You will choose which sheet by changing the contents of a particular cell (C13, as in the OP Chris's question). One way to do this is to make it a drop-down list (using Data > Data Validation > Allow [List]). The list will have the following names:
Sheet1
Sheet2
Sheet3
(This will generalize without the drop-down list. For example, you can just type "Sheet2" into C13, and the relevant data from the closed file will appear; if you then type "Sheet3" then the data from that sheet will appear instead. Or you can have a column with the sheet names, and the next column over [with the formula below, adjusted] for the output from the closed file.)
The cell that will contain the referenced data from the other, closed sheet (myExcelFile.xlsm) will have:
=IFS(
C13="Sheet1",'C:\data\[myExcelFile.xlsm]Sheet1'!$A$1,
C13="Sheet2",'C:\data\[myExcelFile.xlsm]Sheet2'!$A$1,
C13="Sheet3",'C:\data\[myExcelFile.xlsm]Sheet3'!$A$1
)
And that's it.
It'll throw up a #REF error the first time you do this with myExcelFile.xlsm closed, but you can go to Data > Queries & Connections > Edit Links > Update Values and your values from the closed file should appear. (Personally, I set up a macro with a button to do the updating, instead of hunting through the menus.) The magic is that when you do Update Values, the data from all of the sheets in the closed file get loaded into the current Excel file - so you don't have to update every time you switch the reference to a different sheet (Sheet2 to Sheet3, for example).
Andrew
In Excel 2016 at least, you can use INDIRECT with a full path reference; the entire reference (including sheet name) needs to be enclosed by ' characters.
So this should work for you:
= INDIRECT("'C:\data\[myExcelFile.xlsm]" & C13 & "'!$A$1")
Note the closing ' in the last string (ie '!$A$1 surrounded by "")
=INDIRECT("'C:\Data["&A8&"]SheetNAME'!$G9")
where A8 contains myExcelFile.xlsm
and G9 contains your source workbook precious data.
OK,
Here's a dinosaur method for you on Office 2010.
Write the full address you want using concatenate (the "&" method of combining text).
Do this for all the addresses you need. It should look like:
="="&"'\FULL NETWORK ADDRESS including [Spreadsheet Name]"&W3&"'!$w4"
The W3 is a dynamic reference to what sheet I am using, the W4 is the cell I want to get from the sheet.
Once you have this, start up a macro recording session. Copy the cell and paste it into another. I pasted it into a merged cell and it gave me the classic "Same size" error. But one thing it did was paste the resulting text from my concatenate (including that extra "=").
Copy over however many you did this for. Then, go into each pasted cell, select he text and just hit enter. It updates it to an active direct reference.
Once you have finished, put the cursor somewhere nice and stop the macro. Assign it to a button and you are done.
It is a bit of a PITA to do this the first time, but once you have done it, you have just made the square peg fit that daamned round hole.
This seems to work with closed file: add a pivot table (rows, tabular layout, no subtotals, no grand totals) of the source to the current workbook, then reference all you want from that pivot table, INDIRECT, LOOKUPs,...
If you know the number of sheet you want to reference you can use below function to find out the name. Than you can use it in INDIRECT funcion.
Public Function GETSHEETNAME(address As String, Optional SheetNumber As Integer = 1) As String
Set WS = GetObject(address).Worksheets
GETSHEETNAME = WS(SheetNumber).Name
End Function
This solution doesn't require referenced workbook to be open - Excel gonna open it by itself (but it's gonna be hidden).
I was disappointed so I made the following workaround:
I created my INDIRECT commands and stored them just outside the desired range. Of course I get errors when the source workbook is closed but they light up when it's open.
So I open the source workbook temporarily.
Then I created a macro that copies the INDIRECT formulas from outside the range and pastes them inside the range. All cells are filled in with the right values.
The macro then copy-pastes the values of the range to the range on top of themselves. This deletes the formulas but keeps their values.
Then I close the source workbook. My values stay intact where I want them and my INDIRECT formulas stay just outside the desired range in case I want to refresh them by repeating the procedure!
This workaround saves me the error of the indirect formulas when the source workbook is closed, and most importantly it saves a lot of time in recalculations!
Hope this works for you too!
I want to refer to a cell value in another closed workbook with a formula (not VBA!). The Sheet name is stored as a variable (in the following example, C13 is "Sheet2").
If the other file is open, then following works:
=INDIRECT("[myExcelFile.xlsm]" & C13 & "!$A$1")
If the file is closed, the above formula doesn't work, as there is no absolute path given. But I got it work with following (give attention to ' instead of ":
='C:\data\[myExcelFile.xlsm]Sheet2'!$A$1
Now I want to replace the hardcoded "Sheet2" with a dynamic referenced value, means with C13 (as seen in the first code snippet).
Does anybody know a solution without using VBA or other libraries?
There is definitively no way to do this with standard formulas. However, a crazy sort of answer can be found here. It still avoids VBA, and it will allow you to get your result dynamically.
First, make the formula that will generate your formula, but don't add the = at the beginning!
Let us pretend that you have created this formula in cell B2 of Sheet1, and you would like the formula to be evaluated in column c.
Now, go to the Formulas tab, and choose "Define Name". Give it the name myResult (or whatever you choose), and under Refers To, write =evaluate(Sheet1!$B2) (note the $)
Finally, go to C2, and write =myResult. Drag down, and... voila!
I too was looking for the answer to referencing cells in a closed workbook. Here is the link to the solution (correct formula) below. I have tried it on my current project (referencing a single cell and an array of cells) and it works well with no errors. I hope it helps you.
https://www.extendoffice.com/documents/excel/4226-excel-reference-unopened-file.html
In the formula, E:\Excel file\ is the full file path of the unopened workbook, test.xlsx is the name of the workbook, Sheet2 is the sheet name which contains the cell value you need to reference from, and A:A,2,1 means the cell A2 will be referenced in the closed workbook. You can change them based on your needs.
If you want to manually select a worksheet to reference, please use this formula
=INDEX('E:\Excel file\[test.xlsx]sheetname'!A:A,2,1)
After applying this formula, you will get a Select Sheet dialog box, please select a worksheet and then click the OK button. Then the certain cell value of this worksheet will be referenced immediately.
The problem is that a link to a closed file works with index( but not with index(indirect(
It seems to me that it is a programming issue of the index function.
I solved it with a if clause row
C2=sheetname
if(c2=Sheet1,index(sheet1....),if(C2="Sheet2",index(sheet2....
I did it over five sheets, it's a long formula, but does what I need.
Check INDEX Function:
=INDEX('C:\path\[file.xlsm]Sheet1'!A10:B20;1;1)
Thank you for the great question. I want to clarify and second the solution posted by Philipp. The solution does the following:
Updates data from a closed Excel file, and
Does so "dynamically" (though not exactly - you'll see)
In his answer above, Philipp said: "The problem is that a link to a closed file works with index( but not with index(indirect("
I believe this is still true. (I'm using Office 365 here in March of 2021. It would be so nice if Microsoft allowed INDIRECT and INDEX to play nicely together with closed files!)
I can confirm that Philipp's workaround indeed works, practically speaking. From the user's point of view, it feels like what Chris, the OP, wants to do.
Let's say you want the contents of a given cell to be drawn from Sheet1, Sheet2 or Sheet3, which are from a closed file myExcelFile.xlsm. You will choose which sheet by changing the contents of a particular cell (C13, as in the OP Chris's question). One way to do this is to make it a drop-down list (using Data > Data Validation > Allow [List]). The list will have the following names:
Sheet1
Sheet2
Sheet3
(This will generalize without the drop-down list. For example, you can just type "Sheet2" into C13, and the relevant data from the closed file will appear; if you then type "Sheet3" then the data from that sheet will appear instead. Or you can have a column with the sheet names, and the next column over [with the formula below, adjusted] for the output from the closed file.)
The cell that will contain the referenced data from the other, closed sheet (myExcelFile.xlsm) will have:
=IFS(
C13="Sheet1",'C:\data\[myExcelFile.xlsm]Sheet1'!$A$1,
C13="Sheet2",'C:\data\[myExcelFile.xlsm]Sheet2'!$A$1,
C13="Sheet3",'C:\data\[myExcelFile.xlsm]Sheet3'!$A$1
)
And that's it.
It'll throw up a #REF error the first time you do this with myExcelFile.xlsm closed, but you can go to Data > Queries & Connections > Edit Links > Update Values and your values from the closed file should appear. (Personally, I set up a macro with a button to do the updating, instead of hunting through the menus.) The magic is that when you do Update Values, the data from all of the sheets in the closed file get loaded into the current Excel file - so you don't have to update every time you switch the reference to a different sheet (Sheet2 to Sheet3, for example).
Andrew
In Excel 2016 at least, you can use INDIRECT with a full path reference; the entire reference (including sheet name) needs to be enclosed by ' characters.
So this should work for you:
= INDIRECT("'C:\data\[myExcelFile.xlsm]" & C13 & "'!$A$1")
Note the closing ' in the last string (ie '!$A$1 surrounded by "")
=INDIRECT("'C:\Data["&A8&"]SheetNAME'!$G9")
where A8 contains myExcelFile.xlsm
and G9 contains your source workbook precious data.
OK,
Here's a dinosaur method for you on Office 2010.
Write the full address you want using concatenate (the "&" method of combining text).
Do this for all the addresses you need. It should look like:
="="&"'\FULL NETWORK ADDRESS including [Spreadsheet Name]"&W3&"'!$w4"
The W3 is a dynamic reference to what sheet I am using, the W4 is the cell I want to get from the sheet.
Once you have this, start up a macro recording session. Copy the cell and paste it into another. I pasted it into a merged cell and it gave me the classic "Same size" error. But one thing it did was paste the resulting text from my concatenate (including that extra "=").
Copy over however many you did this for. Then, go into each pasted cell, select he text and just hit enter. It updates it to an active direct reference.
Once you have finished, put the cursor somewhere nice and stop the macro. Assign it to a button and you are done.
It is a bit of a PITA to do this the first time, but once you have done it, you have just made the square peg fit that daamned round hole.
This seems to work with closed file: add a pivot table (rows, tabular layout, no subtotals, no grand totals) of the source to the current workbook, then reference all you want from that pivot table, INDIRECT, LOOKUPs,...
If you know the number of sheet you want to reference you can use below function to find out the name. Than you can use it in INDIRECT funcion.
Public Function GETSHEETNAME(address As String, Optional SheetNumber As Integer = 1) As String
Set WS = GetObject(address).Worksheets
GETSHEETNAME = WS(SheetNumber).Name
End Function
This solution doesn't require referenced workbook to be open - Excel gonna open it by itself (but it's gonna be hidden).
I was disappointed so I made the following workaround:
I created my INDIRECT commands and stored them just outside the desired range. Of course I get errors when the source workbook is closed but they light up when it's open.
So I open the source workbook temporarily.
Then I created a macro that copies the INDIRECT formulas from outside the range and pastes them inside the range. All cells are filled in with the right values.
The macro then copy-pastes the values of the range to the range on top of themselves. This deletes the formulas but keeps their values.
Then I close the source workbook. My values stay intact where I want them and my INDIRECT formulas stay just outside the desired range in case I want to refresh them by repeating the procedure!
This workaround saves me the error of the indirect formulas when the source workbook is closed, and most importantly it saves a lot of time in recalculations!
Hope this works for you too!
I want to refer to a cell value in another closed workbook with a formula (not VBA!). The Sheet name is stored as a variable (in the following example, C13 is "Sheet2").
If the other file is open, then following works:
=INDIRECT("[myExcelFile.xlsm]" & C13 & "!$A$1")
If the file is closed, the above formula doesn't work, as there is no absolute path given. But I got it work with following (give attention to ' instead of ":
='C:\data\[myExcelFile.xlsm]Sheet2'!$A$1
Now I want to replace the hardcoded "Sheet2" with a dynamic referenced value, means with C13 (as seen in the first code snippet).
Does anybody know a solution without using VBA or other libraries?
There is definitively no way to do this with standard formulas. However, a crazy sort of answer can be found here. It still avoids VBA, and it will allow you to get your result dynamically.
First, make the formula that will generate your formula, but don't add the = at the beginning!
Let us pretend that you have created this formula in cell B2 of Sheet1, and you would like the formula to be evaluated in column c.
Now, go to the Formulas tab, and choose "Define Name". Give it the name myResult (or whatever you choose), and under Refers To, write =evaluate(Sheet1!$B2) (note the $)
Finally, go to C2, and write =myResult. Drag down, and... voila!
I too was looking for the answer to referencing cells in a closed workbook. Here is the link to the solution (correct formula) below. I have tried it on my current project (referencing a single cell and an array of cells) and it works well with no errors. I hope it helps you.
https://www.extendoffice.com/documents/excel/4226-excel-reference-unopened-file.html
In the formula, E:\Excel file\ is the full file path of the unopened workbook, test.xlsx is the name of the workbook, Sheet2 is the sheet name which contains the cell value you need to reference from, and A:A,2,1 means the cell A2 will be referenced in the closed workbook. You can change them based on your needs.
If you want to manually select a worksheet to reference, please use this formula
=INDEX('E:\Excel file\[test.xlsx]sheetname'!A:A,2,1)
After applying this formula, you will get a Select Sheet dialog box, please select a worksheet and then click the OK button. Then the certain cell value of this worksheet will be referenced immediately.
The problem is that a link to a closed file works with index( but not with index(indirect(
It seems to me that it is a programming issue of the index function.
I solved it with a if clause row
C2=sheetname
if(c2=Sheet1,index(sheet1....),if(C2="Sheet2",index(sheet2....
I did it over five sheets, it's a long formula, but does what I need.
Check INDEX Function:
=INDEX('C:\path\[file.xlsm]Sheet1'!A10:B20;1;1)
Thank you for the great question. I want to clarify and second the solution posted by Philipp. The solution does the following:
Updates data from a closed Excel file, and
Does so "dynamically" (though not exactly - you'll see)
In his answer above, Philipp said: "The problem is that a link to a closed file works with index( but not with index(indirect("
I believe this is still true. (I'm using Office 365 here in March of 2021. It would be so nice if Microsoft allowed INDIRECT and INDEX to play nicely together with closed files!)
I can confirm that Philipp's workaround indeed works, practically speaking. From the user's point of view, it feels like what Chris, the OP, wants to do.
Let's say you want the contents of a given cell to be drawn from Sheet1, Sheet2 or Sheet3, which are from a closed file myExcelFile.xlsm. You will choose which sheet by changing the contents of a particular cell (C13, as in the OP Chris's question). One way to do this is to make it a drop-down list (using Data > Data Validation > Allow [List]). The list will have the following names:
Sheet1
Sheet2
Sheet3
(This will generalize without the drop-down list. For example, you can just type "Sheet2" into C13, and the relevant data from the closed file will appear; if you then type "Sheet3" then the data from that sheet will appear instead. Or you can have a column with the sheet names, and the next column over [with the formula below, adjusted] for the output from the closed file.)
The cell that will contain the referenced data from the other, closed sheet (myExcelFile.xlsm) will have:
=IFS(
C13="Sheet1",'C:\data\[myExcelFile.xlsm]Sheet1'!$A$1,
C13="Sheet2",'C:\data\[myExcelFile.xlsm]Sheet2'!$A$1,
C13="Sheet3",'C:\data\[myExcelFile.xlsm]Sheet3'!$A$1
)
And that's it.
It'll throw up a #REF error the first time you do this with myExcelFile.xlsm closed, but you can go to Data > Queries & Connections > Edit Links > Update Values and your values from the closed file should appear. (Personally, I set up a macro with a button to do the updating, instead of hunting through the menus.) The magic is that when you do Update Values, the data from all of the sheets in the closed file get loaded into the current Excel file - so you don't have to update every time you switch the reference to a different sheet (Sheet2 to Sheet3, for example).
Andrew
In Excel 2016 at least, you can use INDIRECT with a full path reference; the entire reference (including sheet name) needs to be enclosed by ' characters.
So this should work for you:
= INDIRECT("'C:\data\[myExcelFile.xlsm]" & C13 & "'!$A$1")
Note the closing ' in the last string (ie '!$A$1 surrounded by "")
=INDIRECT("'C:\Data["&A8&"]SheetNAME'!$G9")
where A8 contains myExcelFile.xlsm
and G9 contains your source workbook precious data.
OK,
Here's a dinosaur method for you on Office 2010.
Write the full address you want using concatenate (the "&" method of combining text).
Do this for all the addresses you need. It should look like:
="="&"'\FULL NETWORK ADDRESS including [Spreadsheet Name]"&W3&"'!$w4"
The W3 is a dynamic reference to what sheet I am using, the W4 is the cell I want to get from the sheet.
Once you have this, start up a macro recording session. Copy the cell and paste it into another. I pasted it into a merged cell and it gave me the classic "Same size" error. But one thing it did was paste the resulting text from my concatenate (including that extra "=").
Copy over however many you did this for. Then, go into each pasted cell, select he text and just hit enter. It updates it to an active direct reference.
Once you have finished, put the cursor somewhere nice and stop the macro. Assign it to a button and you are done.
It is a bit of a PITA to do this the first time, but once you have done it, you have just made the square peg fit that daamned round hole.
This seems to work with closed file: add a pivot table (rows, tabular layout, no subtotals, no grand totals) of the source to the current workbook, then reference all you want from that pivot table, INDIRECT, LOOKUPs,...
If you know the number of sheet you want to reference you can use below function to find out the name. Than you can use it in INDIRECT funcion.
Public Function GETSHEETNAME(address As String, Optional SheetNumber As Integer = 1) As String
Set WS = GetObject(address).Worksheets
GETSHEETNAME = WS(SheetNumber).Name
End Function
This solution doesn't require referenced workbook to be open - Excel gonna open it by itself (but it's gonna be hidden).
I was disappointed so I made the following workaround:
I created my INDIRECT commands and stored them just outside the desired range. Of course I get errors when the source workbook is closed but they light up when it's open.
So I open the source workbook temporarily.
Then I created a macro that copies the INDIRECT formulas from outside the range and pastes them inside the range. All cells are filled in with the right values.
The macro then copy-pastes the values of the range to the range on top of themselves. This deletes the formulas but keeps their values.
Then I close the source workbook. My values stay intact where I want them and my INDIRECT formulas stay just outside the desired range in case I want to refresh them by repeating the procedure!
This workaround saves me the error of the indirect formulas when the source workbook is closed, and most importantly it saves a lot of time in recalculations!
Hope this works for you too!
So I've got two workbooks, where Workbook A pulls out different cells from different worksheets of Workbook B and adds them altogether. Problem is, it does this so much that it can end up causing a formula in excess of the 8000+ characters because of the filepath.
Is there a formula or method that would help shorten this? Perhaps a way where you only refer to the file path once and then every cell reference inside the formula knows it's to that same file path? The process of constantly repeating the filepath just to get the Worksheet & Cell Reference is what causes the current simple addition formula to balloon. I cannot use a SUM function it would capture other data not intended.
If you have a criteria for what values you would want to sum, you can use the SUMIF/S function to add these values considering your criteria.
Ex.: =SUMIF('D:\test\[test_file.xlsx]Sheet1'!A1:A200,">="&3,'D:\test\[test_file.xlsx]Sheet1'!A1:A200)
will add values equal to or more than 3 in range A1:A200 of Sheet1 in test_file.xlsx in D:\test\ directory.
Another method is typing in the source workbook directory in a cell and making use of an INDIRECT function to do your addition.
Ex.: If you enter 'D:\test\[test_file.xlsx]Sheet1'! as text in cell B1, you can add values of A2, A5 and A7 by typing in =sum(indirect(B1&"A2"),indirect(B1&"A5"),indirect(B1&"A7")) thus significantly reducing character length.
You can as well try to reference all relevant cells of the source workbook to another sheet in the destination workbook and make your addition from that "helper" sheet.
I'd prefer the SUMIF/S option and having a reliable criteria to work with.
What seems to have worked out for me is using SUMPRODUCT. It has cut down on the formula length considerably. As there is a standard criteria of which I wanted to multiply across different worksheets, Array one refers looks for matching criteria from the first worksheet and then uses Array 2 for each worksheet.
I would like to be able to allow a user to change the file being used as a reference in a VLOOKUP. All the files being used will have the same array, just different files paths.
This is how i think it should operate.
Click macro button that opens file browser.
Allow user to choose file.
Paste file path in cell (A1)
Convert path to include array.
In VLOOKUP formula, reference the cell A1 as the 'table array'.
I am already able to complete up to step 3. Any idea on how to add the defined array and reference the cell in a VLOOKUP?
I would just record doing exactly what you want to do and then replace what you did with a variable that gets assigned, like when you place the path into cell A1. Then just have the macro re-write the appropriate vlookup formula.
You could also make a formula that would show what you want, and then use vba to copy that and paste values. You may then need to find and replace something in the cell(s) to get it to actually convert to a formula.
Example:
In A1 Put the path (with workbook name, i.e.C:\Users\username\Desktop\Book3.xlsx )
In B1 ="=VLOOKUP(D1,'"&MID(A5,1,FIND("*",SUBSTITUTE(A5,"\","*",LEN(A5)-LEN(SUBSTITUTE(A5,"\","")))))&"["&MID(A5,FIND("*",SUBSTITUTE(A5,"\","*",LEN(A5)-LEN(SUBSTITUTE(A5,"\",""))))+1,100)&"]Sheet1'!B$1:C$4,2,FALSE)"
B1 then looks like this =VLOOKUP(D1,'C:\Users\username\Desktop\[Book3.xlsx]Sheet1'!B$1:C$4,2,FALSE)
Copy B1 to C1 and do a find replace of something, like find Users and replace all with Users.
This is messy, but I use something like this for a tool that needs to update form 30 different files of different sizes based on 6000 rows of array formulas that update of yet another spreadsheet. It works well for me, but a bit slow for large files.