Yeah, that's how I've got the string. Not sure what I have done different this morning from last night, but it's working now. I probably had a typo or something. :bink:
Thanks Jacob!!
Printable View
Yeah, that's how I've got the string. Not sure what I have done different this morning from last night, but it's working now. I probably had a typo or something. :bink:
Thanks Jacob!!
Zack,
In the off chance you need to identify the module as well, you could use the format
Only really necessary if you have two subs of the same name in two different modulesCode:AddIn.xla!modulename.macroname
Matt
Yeah, that was my first problem, but I figured that out quick enough. The actual problem was I referred to the add in like "Addinname!routinename" and it should have been "addinname!routinename". So I found out it was case sensitive. :)
Thanks for the help!
Yeah, VBA is very sensitive about its Text Names. Anyways glad to help.
Later
Jacob
Actually, this is also really useful when calling Subs that reside within the Worksheet Class Module or the 'ThisWorkbook' Class Module. In fact, it's the only way to access them in this case...Quote:
Originally Posted by mvidas
:),
Mike