Skip to content

Latest commit

 

History

History
43 lines (25 loc) · 1.27 KB

Excel.PivotTable.RepeatItemsOnEachPrintedPage.md

File metadata and controls

43 lines (25 loc) · 1.27 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
PivotTable.RepeatItemsOnEachPrintedPage property (Excel)
vbaxl10.chm235135
vbaxl10.chm235135
Excel.PivotTable.RepeatItemsOnEachPrintedPage
96e5e2d8-44ff-8d6f-6bba-f009dbc769a7
05/09/2019
medium

PivotTable.RepeatItemsOnEachPrintedPage property (Excel)

True if row, column, and item labels appear on the first row of each page when the specified PivotTable report is printed. False if labels are printed only on the first page. The default value is True. Read/write Boolean.

Syntax

expression.RepeatItemsOnEachPrintedPage

expression A variable that represents a PivotTable object.

Remarks

Microsoft Excel prints row and column labels in place of any print titles set for the worksheet. Use the PrintTitles property to determine whether print titles are set for the PivotTable report.

Example

This example sets Microsoft Excel to repeat the labels on each page when the fourth PivotTable report on the active worksheet is printed.

ActiveSheet.PivotTables("PivotTable4") _ 
 .RepeatItemsOnEachPrintedPage = True

[!includeSupport and feedback]