Version Property

Applies To

Application object.

Description

Returns the Microsoft Excel version number. Read-only String.

See Also

Build property.

Example

This example displays a message box that contains the Microsoft Excel version number and the name of the operating system.

MsgBox "Welcome to Microsoft Excel version " & _ 
    Application.Version & " running on " & _
    Application.OperatingSystem & "!"