Hello everybody.
I have been going crazy over this and although there are multiple threads regarding this problem none of them have helped so far.
The Problem:
There is a destination sheet that collects data from multiple Source sheets (12 atm, but may become more).
The links have mostly been generated by replacing file names via the search and replace function.
As can be seen in my example I have used the long form of hardcoding the Links.
One of my longer formulas now looks like this:
So you can see my Links are hardcoded to a specific destination.
They do work if I open the source files along with my destination sheet. It is just on start up when I want to update data that the #ref errors appear.
Measures taken so far:
breaking the links and reapplying them via the Excel edit links function
using the shortened versions of the file links
saving the sheet in multiple file versions (binary sheet, '03 Compatibility, Macroenabled and normal '13 workbook) to work around possible formula length limits.
Does anyone have a good idea how to fix this?
As I heard there may be a possible workaround with VBA by programming it to open and close the source sheet with the destination sheet while updating. While this may serve as a short-term workaround I would really appreciate a long term solution.
Best
Paigan
I have been going crazy over this and although there are multiple threads regarding this problem none of them have helped so far.
The Problem:
There is a destination sheet that collects data from multiple Source sheets (12 atm, but may become more).
The links have mostly been generated by replacing file names via the search and replace function.
As can be seen in my example I have used the long form of hardcoding the Links.
One of my longer formulas now looks like this:
Code:
=(IF((SUMIFS('C:\Users\Name\Desktop\Company Name\Current task\Reporting\Program Name\New Reporting\[XXX XXX 05.2014.xlsx]general_report'!$K$2:$K$995'C:\Users\Name\Desktop\Company Name\Current task\Reporting\Program Name\New Reporting\[XXX XXX 05.2014.xlsx]general_report'!$B$2:$B$995;"Name")/3600)-(C74*8)>0;SUMIFS('C:\Users\Name\Desktop\Company Name\Current task\Reporting\Program Name\New Reporting\[XXX XXX 05.2014.xlsx]general_report'!$K$2:$K$995;'C:\Users\Name\Desktop\Company Name\Current task\Reporting\Program Name\New Reporting\[XXX XXX 05.2014.xlsx]general_report'!$B$2:$B$995;"Name")/3600-(C74*8);"0"))
So you can see my Links are hardcoded to a specific destination.
They do work if I open the source files along with my destination sheet. It is just on start up when I want to update data that the #ref errors appear.
Measures taken so far:
breaking the links and reapplying them via the Excel edit links function
using the shortened versions of the file links
saving the sheet in multiple file versions (binary sheet, '03 Compatibility, Macroenabled and normal '13 workbook) to work around possible formula length limits.
Does anyone have a good idea how to fix this?
As I heard there may be a possible workaround with VBA by programming it to open and close the source sheet with the destination sheet while updating. While this may serve as a short-term workaround I would really appreciate a long term solution.
Best
Paigan