Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 869 Bytes

Excel.Application.WorksheetFunction.md

File metadata and controls

39 lines (24 loc) · 869 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.WorksheetFunction property (Excel)
vbaxl10.chm183116
vbaxl10.chm183116
Excel.Application.WorksheetFunction
fd1333bf-8739-303d-30b4-85a99fb344b3
04/05/2019
medium

Application.WorksheetFunction property (Excel)

Returns the WorksheetFunction object. Read-only.

Syntax

expression.WorksheetFunction

expression A variable that represents an Application object.

Example

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]