Skip to content

Latest commit

 

History

History
44 lines (26 loc) · 856 Bytes

Excel.Application.Build.md

File metadata and controls

44 lines (26 loc) · 856 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.Build property (Excel)
vbaxl10.chm133082
vbaxl10.chm133082
Excel.Application.Build
da8ec8af-c1d9-917e-a057-a4762a783124
04/04/2019
medium

Application.Build property (Excel)

Returns the Microsoft Excel build number. Read-only Long.

Syntax

expression.Build

expression A variable that represents an Application object.

Remarks

It's usually safer to test the Version property, unless you are sure that you need to know the build number.

Example

This example tests the Build property.

If Application.Build > 2500 Then 
 ' build-dependent code here 
End If

[!includeSupport and feedback]