VBA Code to Deselect a Field

OilEconomist

Active Member
Joined
Dec 26, 2016
Messages
421
Office Version
  1. 2019
Platform
  1. Windows
Thanks in advance for any suggestions for which I will give feedback.

Why is the following code not executing? I would like to deselect "Test" which exists in the Pivot Table.

Code:
Sub Macro7()


Dim ShtNameOld As String


ShtNameOld = "Test"






    ActiveSheet.PivotTables("PivotTable1").PivotFields(ShtNameOld). _
        Orientation = xlHidden
        
        
End Sub
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Thank you so much DanteAmor! As always you are very helpful.

After hours of troubleshooting I figured out I was missing "Sum of" to where the code should be as follows:

Code:
    ActiveSheet.PivotTables("PivotTable1").PivotFields([COLOR=#ff0000][B]“Sum of “[/B][/COLOR] & ShtNameOld). _
        Orientation = xlHidden

Versus the following

Code:
    ActiveSheet.PivotTables("PivotTable1").PivotFields(ShtNameOld). _
        Orientation = xlHidden
 
Upvote 0
Thank you so much DanteAmor! As always you are very helpful.

After hours of troubleshooting I figured out I was missing "Sum of" to where the code should be as follows:

Code:
    ActiveSheet.PivotTables("PivotTable1").PivotFields([COLOR=#ff0000][B]“Sum of “[/B][/COLOR] & ShtNameOld). _
        Orientation = xlHidden

Versus the following

Code:
    ActiveSheet.PivotTables("PivotTable1").PivotFields(ShtNameOld). _
        Orientation = xlHidden


I'm glad to know you found the problem. regards
 
Upvote 0

Forum statistics

Threads
1,214,946
Messages
6,122,401
Members
449,081
Latest member
JAMES KECULAH

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