Skip to content

Latest commit

 

History

History
54 lines (34 loc) · 1.2 KB

Excel.Application.WorkbookBeforePrint.md

File metadata and controls

54 lines (34 loc) · 1.2 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.WorkbookBeforePrint event (Excel)
vbaxl10.chm504086
vbaxl10.chm504086
Excel.Application.WorkbookBeforePrint
27cb5f84-fda3-dc89-6e12-0c31ed16f47c
04/05/2019
medium

Application.WorkbookBeforePrint event (Excel)

Occurs before any open workbook is printed.

Syntax

expression.WorkbookBeforePrint (Wb, Cancel)

expression A variable that represents an Application object.

Parameters

Name Required/Optional Data type Description
Wb Required Workbook The workbook.
Cancel Required Boolean False when the event occurs. If the event procedure sets this argument to True, the workbook isn't printed when the procedure is finished.

Return value

Nothing

Example

This example recalculates all worksheets in the workbook before printing anything.

Private Sub App_WorkbookBeforePrint(ByVal Wb As Workbook, _ 
 Cancel As Boolean) 
 For Each wk in Wb.Worksheets 
 wk.Calculate 
 Next 
End Sub

[!includeSupport and feedback]