title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Application.WorksheetFunction property (Excel) |
vbaxl10.chm183116 |
|
|
fd1333bf-8739-303d-30b4-85a99fb344b3 |
04/05/2019 |
medium |
Returns the WorksheetFunction object. Read-only.
expression.WorksheetFunction
expression A variable that represents an Application object.
This example displays the result of applying the Min worksheet function to the range A1:A10.
Set myRange = Worksheets("Sheet1").Range("A1:C10")
answer = Application.WorksheetFunction.Min(myRange)
MsgBox answer
[!includeSupport and feedback]