Application.WorksheetFunction vs. WorksheetFunction
问题 This one is a rather short question and probably easy to answer, however I fail to do so myself at this point: Sample data: A B C Sample code: With Sheet1 Debug.Print Application.WorksheetFunction.Match("D", .Columns(1), 0) 'Option1 Debug.Print Application.Match("D", .Columns(1), 0) 'Option2 Debug.Print WorksheetFunction.Match("D", .Columns(1), 0) 'Option3 End With Question: I know that option2 lost intellisense and will not go into debug mode, however option1 and option3 behave the same