Disconnect Slicers, change data source for Pivot and then re connect slicers

Paul33

New Member
Joined
Nov 17, 2016
Messages
7
Hi, I'm new to all this VBA coding so forgive me because I know this question has been around in various guises before but I cant find the code to do exactly what I need to do. Here goes...

I have a workbook with the worksheets named Complaint Chart, Pivot Table, Pivot Charts.

I run a user form which allows the user to add complaints to the next blank line on the Complaint Charts worksheet, (I have named the range of data currently there ComplaintData). The pivot tables (x3 named PTComplaintsByDay, PTCreditValueByDay and PTComplaintsByType) are populated from the named range (ComplaintData). They also lead into the pivot charts which have slicers attached.

I have a button on the user form to show the Pivot Charts worksheet but this doesn't update the pivot tables and charts to include any new complaints that have been entered since I named the data range. So what I need to do is produce code to dis-connect the slicers, change the named range to include any new complaints that have been entered, refresh the pivot tables and then re-connect the slicers.

I have seen some examples of code to do most of those things individually but I have been unable to combine them together to get it to work.

Any help on how to produce this code or any examples of code that may do this with my small knowledge to adapt it would be very gratefully received.
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Why do you need to disconnect the slicers? Simply updating the named range and refreshing the pivots should be fine.
 
Upvote 0
Hi Rory,

Thanks for your reply.

I was under the impression that as the slicers are linked to the pivot tables (and pivot charts) that they had to be disconnected before refreshing the pivot tables with the new data or it caused an error message in Excel.

As I said, I am new to all this so if that is not the case then sorry for my mistake. In case I just need to get an idea of the code required to update the named range to include any new data added and refresh the pivot tables.

Can you help please?


Here's hoping!
Paul.
 
Upvote 0
I would suggest you use a Table or dynamic named range for the source data, since they will automatically expand to include new rows of data and so all you need to do is refresh the Pivot tables. You shouldn't have to do anything to the slicers for this.
 
Upvote 0
That sounds exactly like what I need Rory, however I have named the range the current data is using can you tell me how to turn this into a dynamic named range or table please?

Thanks loads for your help.
 
Upvote 0
paul33,

If you select the range you'd like to convert, you can just go to the Home tab and to the left of the Styles box there's an option to 'Format as Table". From there you can rename it, set a color scheme, and as previous posts said it will auto expand upon new entries. Then set your pivot to reference the named table range and you never have to reset your pivot table range again, as it references the dynamic table. So you can click refresh all and you should be good, slicers and all!
 
Upvote 0

Forum statistics

Threads
1,221,469
Messages
6,160,028
Members
451,611
Latest member
PattiButche

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