ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   How to turn off dragging for a Pivot Table field (https://www.excelbanter.com/excel-programming/311070-re-how-turn-off-dragging-pivot-table-field.html)

sebastienm

How to turn off dragging for a Pivot Table field
 
Hi,
Not sure what you mean by drag off.

You can freeze a field using the below function PivotFieldFreeze.
Pivot freeze would have to be called on each field.

Sub test()
Dim pf As PivotField
Set pf = ActiveSheet.PivotTables(1).PivotFields("A") '<--- change field
name here
PivotFieldFreeze pf
End Sub

Function PivotFieldFreeze(PivotField As PivotField)
With PivotField
.DragToColumn = False
.DragToData = False
.DragToHide = False
.DragToPage = False
.DragToRow = False
End With
End Function

"Prabhakar" wrote:

Hi,
Is there a way to turn off dragging for a Pivot Table.

thanks
prabhakar



All times are GMT +1. The time now is 10:50 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com