Currently I have one source file called SRC with and index Cisome columns Cn. This file is indexed without duplicates on the first column and then there is data which I want to read from one of the columns depending on the situation. (The data is prices, dates, etc. for each index).
I have some amount of destination Excel-files (call them, A, B, C, etc.) in which I have to lookup the corresponding column for each matching index in my source SRC.
Currently I am using a named range and VLOOKUP to find the matching index and the corresponding data:
VLOOKUP($A6;price_data;3;FALSE)
This solution works, but my problem is the file size. Using a named range or even a direct reference to another file causes Excel to include the data from my SRC to every one of my destination files A, B, C, ...
Question itself: How to lookup data from a source file without increasing the size of my destination files?
Additional test with two files: A) still has the named range linked to another file and B) I deleted the named range, did not modify any equations. Then renamed both files to .zip, to check the contents.
File A contains a directory xl/externalLinks with a file externalLink1.xml which is about the same size as my original SRC.
File B does not contain the xl/externalLinks and the size is very much smaller. A = 1,2 MB and B = 25 kB.