I don't need to driven crazy, it's close enough to walk...
I'm posting this for the next guy that might need it.
I've been working for months on a very large macro/vba task to simplify router data research.
x() is an array that is loaded from a text file, using:
x = Split(CreateObject("Scripting.FileSystemObject").OpenTextFile(rName(rCount)).ReadAll, vbCrLf) ' x-Array will contain router dump
I can expand that array in the debug window and find the text I'm trying to find. So, I know it's there.
In part of my code, I have this line:
z = Application.Match("router bgp ", x, 0)
It returns Error 2042 and I figured it out.
z = Application.Match("router bgp *", x, 0)
Turns out "Application.Match" matches the entire line and is happy with wild cards.
Bookmarks