A
ArtDeFart32
I am using Excel 2007 and XP. I wrote some subroutines and functions that I
would like to be able to use in ANY WorkBook.
As a simple example function:
Function aaa()
aaa = "Results of this function"
End Function
--------------------------------------
In ANY Workbook:
sub zzz()
dim xxx as string
xxx=aaa
end sub
I've been trying ADDins, XLSTART Folder, Personal.XLSB, setting references,
but I seem to be missing something. Setting a reference to the workbook that
contains the function (aaa) does work, but then how do you set the reference
for ALL WorkBooks?
Thanks for any insight,
Art
would like to be able to use in ANY WorkBook.
As a simple example function:
Function aaa()
aaa = "Results of this function"
End Function
--------------------------------------
In ANY Workbook:
sub zzz()
dim xxx as string
xxx=aaa
end sub
I've been trying ADDins, XLSTART Folder, Personal.XLSB, setting references,
but I seem to be missing something. Setting a reference to the workbook that
contains the function (aaa) does work, but then how do you set the reference
for ALL WorkBooks?
Thanks for any insight,
Art