Workbook.Windows property (Excel)
Returns a Windows collection that represents all the windows in the specified workbook. Read-only Windows object.
Syntax
expression.Windows
expression A variable that represents a Workbook object.
Remarks
Using this property without an object qualifier is equivalent to using Application.Windows.
This property returns a collection of both visible and hidden windows.
Example
This example names window one in the active workbook Consolidated Balance Sheet. This name is then used as the index to the Windows collection.
ActiveWorkbook.Windows(1).Caption = "Consolidated Balance Sheet"
ActiveWorkbook.Windows("Consolidated Balance Sheet") _
.ActiveSheet.Calculate
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.