Run-time error '1004': Application-defined or object-defined error?

poisonbrandi

New Member
Joined
Sep 7, 2015
Messages
1
Hi,

I am relatively new to VBA and I am trying to write up a code to be able to filter a pivot table using checkboxes:




Sub RentCheck()


If Sheets("Dashboard").CheckBoxes("RentCheck").Value = xlOff Then


Set pt = Sheets("Pivots").PivotTables("PercentofRevFY15")
pt.PivotFields("[Booking].[CHARGE]").PivotItems("[Booking].[CHARGE].&[Rent]").Visible = False
Set pt = Sheets("Pivots").PivotTables("PercentofRevFY16")
pt.PivotFields("[Booking].[CHARGE]").PivotItems("[Booking].[CHARGE].&[Rent]").Visible = False
Set pt = Nothing
End If


If Sheets("Dashboard").CheckBoxes("RentCheck").Value = xlOn Then


Set pt = Sheets("Pivots").PivotTables("PercentofRevFY15")
pt.PivotFields("[Booking].[CHARGE]").PivotItems("[Booking].[CHARGE].&[Rent]").Visible = True
Set pt = Sheets("Pivots").PivotTables("PercentofRevFY16")
pt.PivotFields("[Booking].[CHARGE]").PivotItems("[Booking].[CHARGE].&[Rent]").Visible = True
Set pt = Nothing
End If


End Sub




I keep on getting that 1004 error though and the help option is not very helpful, can someone please explain what I have done wrong?
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes

Forum statistics

Threads
1,223,214
Messages
6,170,774
Members
452,353
Latest member
strainu

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