I think that is a partial path. Try doing this:
- Set a reference to "Microsoft Visual Basic for Applications Extensibility"
- Go to tools>macro>security and check "Trust Access to Visual Basic Project"
- Run the following:
Public Sub PrintRefs() Dim r As VBIDE.Reference For Each r In Excel.Application.VBE.ActiveVBProject.References Debug.Print r.Name & vbNewLine & r.FullPath & vbNewLine Next End Sub