Protection.AllowUsingPivotTables 屬性 (Excel)
如果允許使用者在受保護的工作表上操作樞紐分析表,則會傳回 True 。 唯讀的 Boolean。
語法
運算式。AllowUsingPivotTables
表達 代表 Protection 物件的變數。
註解
AllowUsingPivotTables 屬性會套用至非 OLAP 資料來源。
AllowUsingPivotTables屬性可以使用Protect方法引數來設定。
範例
本範例允許使用者存取樞紐分析表,並通知使用者。 它假設使用中工作表上存在非 OLAP 樞紐分析表。
Sub ProtectionOptions()
ActiveSheet.Unprotect
' Allow PivotTables to be manipulated on a protected worksheet.
If ActiveSheet.Protection.Allow UsingPivotTables = False Then
ActiveSheet.Protect AllowUsingPivotTables:=True
End If
MsgBox "PivotTables can be manipulated on the protected worksheet."
End Sub
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。