I have a library of functions for dealing with arrays of data (things like removing blanks, sorting, concatenation, extracting numbers, etc.) which I have as an .xlam and a couple of others use. For a particular application, I embedded this library (copied the module) into a workbook as not all of the users willl have the add on and we wanted to avoid file links.
The problem is, if anyone who has the add on opens the workbook, it seems to redirect the UDF calls to the add on and form a link, rather than maintaining the local link. How can we avoid forming a link when there is already a local module which has the correct functions.
Note: I would really really like to avoid making lots of changes in the workbook, as it is close to 300m formulae and right on the edge of what excel can do before it breaks down - the less changes the better. I'm happier to change the addin module or options, although I want to keep the same UDF names
The problem is, if anyone who has the add on opens the workbook, it seems to redirect the UDF calls to the add on and form a link, rather than maintaining the local link. How can we avoid forming a link when there is already a local module which has the correct functions.
Note: I would really really like to avoid making lots of changes in the workbook, as it is close to 300m formulae and right on the edge of what excel can do before it breaks down - the less changes the better. I'm happier to change the addin module or options, although I want to keep the same UDF names