VBA for changing all field settings in a Pivot Table

JoeMontana

New Member
Joined
May 31, 2018
Messages
4
Hi there,

I have a pivot table that has about 35 columns and I would like to quickly change all of the field settings (eg. from sum to max)

The macro that I have works in principle, but it crashes every time after two or three fields are changed. Any suggestions for improvements or workarounds?

The key part is the For Loop is:
Code:
For Each pf In pt.DataFields
      pf.Function = xlCount
    Next pf

My full script is:

Code:
Sub ChangeAllValueFields()
  Dim pt As PivotTable
  Dim pf As PivotField
  Dim ws As Worksheet
  Dim FieldSetting As String


  Set ws = ActiveSheet
  Set pt = ws.PivotTables(1)
  
FieldSetting = InputBox("Enter field setting for pivotchart" & vbCrLf & vbCrLf & "xlCount" & vbCrLf & "xlSum" & vbCrLf & "xlMin" & vbCrLf & "xlMax")
  
  Application.ScreenUpdating = False
  pt.ManualUpdate = True


If FieldSetting = "xlCount" Then


    
    For Each pf In pt.DataFields
      pf.Function = xlCount
    Next pf
 




ElseIf FieldSetting = "xlSum" Then


     For Each pf In pt.DataFields
      pf.Function = xlSum
    Next pf


ElseIf FieldSetting = "xlMin" Then


   
    For Each pf In pt.DataFields
      pf.Function = xlMin
    Next pf
  
ElseIf FieldSetting = "xlMax" Then


   
    For Each pf In pt.DataFields
      pf.Function = xlMax
    Next pf
   


Else
MsgBox ("Entry not on list. Changes cancelled")
End If


  pt.ManualUpdate = False
  Application.ScreenUpdating = True
  
  Set pf = Nothing
  Set pt = Nothing
  Set ws = Nothing
End Sub
 
Last edited by a moderator:

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Welcome to the forum.

In what way does it crash? With an error message, or Excel freezing/crashing? Something else?
 
Upvote 0
Thanks Rory,

I'm a long time listener, first time caller :)

Excel crashes / stops working. Like it appears to be a memory issue.

The script will also run fully through without crashing if I step through each line. But then it only changes the first approx 10 fields. I don't know anything about the backend of excel but again, it seems like it just runs out of memory and stops executing the script.

I tried it with a smaller table, with 3 fields and it works fine.

Would adding a Wait line in the loop help?

I'm using 64-bit Office 365 ProPlus
 
Upvote 0
You could try adding DoEvents to the loop:

Code:
    For Each pf In pt.DataFields
      pf.Function = xlMax
      DoEvents
    Next pf
 
Upvote 0
Thanks Rory, that's a new command for me.

Unfortunately Excel still stops working if I try to run it or step into too quickly.
 
Upvote 0
Is your pivot table using the data model?
 
Upvote 0
I wonder if that could be the issue. What happens if you don't use pt.manualupdate in the code?
 
Upvote 0

Forum statistics

Threads
1,214,975
Messages
6,122,538
Members
449,088
Latest member
RandomExceller01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top