You could add some Workbook_Open code to the workbook that checks the Addins
collection or the Workbooks collection and if your XLA is not installed or
open then it installs it (assuming that the London user somehow has access
to it).
If the XLA is on a network share there are some advantages to having a small
stub loader XLA (which will almost never change) which looks for the latest
version of the XLA and opens it (if you open an XLA it functions as an
installed XLA except that its not in the Addins collection etc).
There is an example of this in my auto-reversioning addin loader which is on
my downloads page
http://www.DecisionModels.com/downloads.htm
Charles
__________________________________________________
The Excel Calculation Site
http://www.decisionmodels.com
"PeteCresswell" <(E-Mail Removed)> wrote in message
news:3d57f1fa-d653-4837-9396-(E-Mail Removed)...
> Got some code in an Excel workbook.
>
> User plans to save multiple copies of workbook.
>
> The Good-Right-And-Holy-Path seems pretty clear: move said code to
> a .XLA so any changes to same will be transparent across copies of the
> workbook.
>
> But I'm in Philadelphia PA, and now we've got the issue of user XYZ,
> who opens the workbook for the first time - in London at 0400 EST.
>
> I'd rather not have to engage in any hand holding and have the
> workbook automagically create a link to my .XLA code repository.
>
> Not a religious issue... but definately a nice-to-have.
>
> Suggestions?