Skip to content

Latest commit

 

History

History
52 lines (32 loc) · 1.07 KB

Excel.Workbook.BeforePrint.md

File metadata and controls

52 lines (32 loc) · 1.07 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Workbook.BeforePrint event (Excel)
vbaxl10.chm503078
vbaxl10.chm503078
Excel.Workbook.BeforePrint
2c97cb32-2bb3-2848-b5ed-32d9129af080
05/29/2019
medium

Workbook.BeforePrint event (Excel)

Occurs before the workbook (or anything in it) is printed.

Syntax

expression.BeforePrint (Cancel)

expression A variable that represents a Workbook object.

Parameters

Name Required/Optional Data type Description
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 active workbook before printing anything.

Private Sub Workbook_BeforePrint(Cancel As Boolean) 
 For Each wk in Worksheets 
 wk.Calculate 
 Next 
End Sub

[!includeSupport and feedback]