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

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
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,213,536
Messages
6,114,215
Members
448,554
Latest member
Gleisner2

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