I'm trying to get my head around VBA and the intricacies / similarities to Excel Formula.
The problem I have is how to best find the row and column of a search string inside a table.
If I use the Excel formula: =MATCH(MyString, Table1[LookupColumn], 0) it works fine.
But how on earth do I do that with:
Application.WorksheetFunction.Match
I have found so many conflicting codes that I'm totally lost for VBA.
I've even tried using Range Find, but I can't get it to work. Any help would be greatly appreciated.