Build Property
Applies To
Application object.
Description
Returns the Microsoft Excel build number. Read-only Long.
Remarks
It's usually safer to test the Version property, unless you're sure you need to know the build number.
See Also
Version property.
Example
This example tests the Build property.
If Application.Build > 2500 Then
' build-dependent code here
End If