How can I reference a column of a certain sheet using the below command in VBA?
Application.WorksheetFunction.Max
How can I reference a column of a certain sheet using the below command in VBA?
Application.WorksheetFunction.Max
Just reference the Range you need.
Example:
Application.WorksheetFunction.Max(Worksheets("Plan1").Range("A1:A10"))