Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 1012 Bytes

Excel.Application.Ready.md

File metadata and controls

45 lines (28 loc) · 1012 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.Ready property (Excel)
vbaxl10.chm133260
vbaxl10.chm133260
Excel.Application.Ready
4b9577ee-0f0c-dd0b-c1dd-90cde2c5fb1e
04/05/2019
medium

Application.Ready property (Excel)

Returns True when the Microsoft Excel application is ready; False when the Excel application is not ready. Read-only Boolean.

Syntax

expression.Ready

expression A variable that represents an Application object.

Example

In this example, Excel checks to see if the Ready property is set to True, and if so, a message displays "Application is ready." Otherwise, Excel displays the message "Application is not ready."

Sub UseReady() 
 
 If Application.Ready = True Then 
 MsgBox "Application is ready." 
 Else 
 MsgBox "Application is not ready." 
 End If 
 
End Sub

[!includeSupport and feedback]