回答:
アドインへの参照が欠落していますか?
ThisWorkbookまたはAuto_OpenのWorkbook_Openイベント中に参照を追加できます。以下のラインに沿ったもの:
ThisWorkbook.VBProject.References.AddFromFile < full path to your xla >
xlaをインストールしてGUIDを知っている場合は、次を使用できます。
'change this to match the GUID generated by the uid generator tool
'the curly braces are not optional.
strGUID = "{00020905-0000-0000-C000-000000000046}"
ThisWorkbook.VBProject.References.AddFromGuid _
GUID:=strGUID, Major:=1, Minor:=0