James has attended:
Excel Advanced course
Excel VBA Intro Intermediate course
Excel VBA Advanced course
Application.WorksheetFunction.Match on a sheet that isn't active
I want to use Application.WorksheetFunction.Match on a sheet that isn't active. Can this be done?
RE: Application.WorksheetFunction.Match on a sheet that isn't ac
Hi James
Thank you for your question.
Yes you can use match onto another sheet. For the second argument, the range, you need to specify the sheet first and then the range.
Example
Application.WorksheetFunction.Match(1, Sheets("Sheet1").Range("A1:a10"))
Please let me know how you get on.
Laura GB