Skip to content

Latest commit

 

History

History
43 lines (25 loc) · 1.16 KB

Access.Form.AllowPivotChartView.md

File metadata and controls

43 lines (25 loc) · 1.16 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Form.AllowPivotChartView property (Access)
vbaac10.chm13535
vbaac10.chm13535
Access.Form.AllowPivotChartView
5585b530-d114-d07e-63cb-8d96dec458e8
03/09/2019
medium

Form.AllowPivotChartView property (Access)

Returns or sets a Boolean indicating whether the specified form may be viewed in PivotChart view. True if PivotChart view is allowed. Read/write.

Syntax

expression.AllowPivotChartView

expression A variable that represents a Form object.

Remarks

Use the AllowDatasheetView, AllowFormView, AllowPivotChartView, or AllowPivotTableView properties to control which views are allowed for a form.

Example

The following example makes PivotChart view valid for the specified form, and then opens the form in PivotChart view.

Forms(0).AllowPivotChartView = True 
DoCmd.OpenForm FormName:=Forms(0).Name, View:=acFormPivotChart 

[!includeSupport and feedback]