Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 860 Bytes

Excel.Application.Version.md

File metadata and controls

39 lines (24 loc) · 860 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.Version property (Excel)
vbaxl10.chm133228
vbaxl10.chm133228
Excel.Application.Version
071cad0c-1cc0-8972-76f8-7c04d42765bd
04/05/2019
medium

Application.Version property (Excel)

Returns a String value that represents the Microsoft Excel version number.

Syntax

expression.Version

expression A variable that represents an Application object.

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 & "!"

[!includeSupport and feedback]