user2140173
user2140173

Reputation:

*.xlam add-in and missing references in a new VBA project / new Excel's instance with the add-in turned on

Repro:

So, this basically means you can't add the reference to the new VBA Project (Book1) because your *.xlam is already using it

but

you can't cross-use the Scripting library because trying

Dim d as Dictionary

in that newly created Module1 fails as it doesn't recognise Dictionary object....

Is this somehow a known bug I have never realised or have I just completely overlooked something? Any workarounds?

Upvotes: 6

Views: 1668

Answers (1)

RubberDuck
RubberDuck

Reputation: 12748

The IDE keeps recently used references near the top of the list. Don't scroll down. It's right at the top. I'll admit. This threw me for a loop for a second too.

VBAProject References

Upvotes: 6

Related Questions