Settings.Report Property

<< Click to Display Table of Contents >>

Navigation:  Developer Edition > Visual Basic for Applications (VBA) > Object Model Reference > Settings Object > Properties >

Settings.Report Property

Previous pageReturn to chapter overviewNext page

Returns or sets a constant specifying which Report to create. Uses ReportType constants.

 

Syntax

expression.Report

expression. A variable representing a Settings object.

 

Example

This example creates a difference report.

 

With .Settings

  .Report = ReportType_Standard

End With