I have a Search Engine which draws from two different workbooks, one which the search engine is in, so thats easy, but the other is seperate.
I am wondering if there is a way to link them so that if one is opened, the other will. These will be put on a wiki and I need them both to be downloaded, is there a way to put them both into the same file but keep them separate at the same time?
I’m guessing the answer will be no, but it doesn’t hurt to pick your brains 😉
The most practical approach would be placing code in each file to
To do this you would place code like below in the
ThisWorkbookmodule of each of the two workbooks.Note that the code disables events to avoid a newly opened file trying to re-open the initial file (although the code will still handle this
Use the same code in the second book, but update the
strFilvariable for the name of the other bookFile#2