Change value fields in Pivot using VBA

MSerup

New Member
Joined
Jan 6, 2017
Messages
1
Hi,

I hope someone can help me, regarding change value fields in a pivot using VBA coding. I total I have 4 different fields that I want to users to be able to switch between, Units, Value in EUR, Value in USD and Value in DKK via dedicated buttons. Now here is the problem. Regardless of which of the field are currently in the pivot it should always change to the selected field. I am thinking that an OR function would be able to do the trick but cannot get it to work. Below are the VBAs for changing each of the fields to Units.

Sub Values_to_Units()
'
' Values_to_Units Macro
'

'
If (ActiveSheet.PivotTables("PivotTable1").PivotFields("Sales DKK Incl. VAT"). _
Orientation = xlHidden Or ActiveSheet.PivotTables("PivotTable1").PivotFields("Sales USD Incl. VAT"). _
Orientation = xlHidden Or ActiveSheet.PivotTables("PivotTable1").PivotFields("Sales EUR Incl. VAT"). _
Orientation = xlHidden) Then
ActiveSheet.PivotTables("PivotTable1").AddDataField ActiveSheet.PivotTables( _
"PivotTable1").PivotFields("Sum of Sales Units"), "Sum of Sales Units" _
, xlSum
End Sub
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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