Unable yo Set Position,PivotItem Class help!!

E_DPSG

Board Regular
Joined
Jul 17, 2008
Messages
82
I am getting a debug error with setting the position within a pivot.

Here is my code:

Code:
VisibleItems=0
For Each PvtField in PvtTabe.RowFields
   if pvtField.Name = "MyName" then
          for  each pvtItem in pvtField.PivotItems
              if pvtItem.Visible=true then VisibleItems=VisibleItems+1
          next
   end if
next

if ActiveSheet.PivotTables("MyPivotTable").PivotFields("MyName").PivotItems("MyItem").visible Then
ActiveSheet.PivotTables("MyPivotTable").PivotFields("MyName").PivotItems("MyItem").position = VisibleItems
End IF
I get the count of items correctly, and it does enter the if clause for visibility, but will not assign the position.

Any Ideas?
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.

Forum statistics

Threads
1,216,218
Messages
6,129,572
Members
449,518
Latest member
srooney

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