Master PivotTable Filter - excel

I have 6 pivot-charts on many worksheets (each worksheet corresponding to different individuals), all pivot-tables have a Month filter. Instead of clicking on each individual filter to update the pivot-table (and corresponding pivot-chart). Is there a way of creating a 'master' filter button so that all filters are updated?
Let me know if you require further information.

You can accomplish this by using a slicer. Slicers are similar to filters, but look a little different and can be associated with multiple pivot tables. This means you might want to make a "front page" or similar area with the slicer on it so it is obvious that the one slicer controls the month filter for all pivot tables.
You just insert the slicer on the page, then click on Report Connections and connect it to each pivot table.

Related

How to create a list of all ticked/non-ticked filter in an excel pivot table

This, I hope, is a really simple question but it might not be possible.
In excel, I have used multiple filters in a pivot table, I now want to create a list of the options ticked from the various filters.
How can I create a list/copy all the ticked (or un-ticked) boxes. I have around 800 filters with about 250 boxes ticked.
The Manual approach:
Select a cell in the PivotTable. Then from the PivotTable Tools>Analyze tab use the Select icon to select the entire PivotTable. Copy it and paste it somewhere else. Drag every field out of it, leaving just the Customers field in it as a Rows field. There's your list.
If you add a slicer, and connect it to both PivotTables, then any changes to the Customer field in your original Pivot will flow through to this new one.
The VBA Approach:
See my UDF at https://superuser.com/questions/1254703/add-slicer-selections-to-sheet-in-a-list-excel-vba/1255885#1255885
And if you want a way to 'recall' a filter, then check out my answer here:
Pivotfields multiple filter

Adding Pivot Table Slicers in one box

Currently I am using a pivot table to display information to users, they can edit the slicers to filter the table with what they want to see. As requirements grow, i find myself adding more and more slicers which take up too much space on the excel sheet.
Is there a way to put the slicers on one single form so that it looks intuitive and is easily navigated?
Best,
Grant

macro to change multiple slicer values

I am at a loss after some searching.
I have two pivot tables driven from two different data source/caches. source 1 is a table with departments' total charged amounts, source 2 has the same departments with the total denied dollar amounts. I am pulling the data from both of these into pivot tables so that I can manipulate the department (among other things) to calculate percentages.
My original thought was to set a "Department" slicer for each table, and have a macro assigned to one of the slicers to change the second one so that both pivot tables filter the department. I was also thinking of possibly using one slicer, and assigning it a macro to simply filter the department on the second pivot.
both of these tables will be hidden with the exception of one of the slicers and will have the calculated data from each table pulled to the top of the sheet for easy viewing.
both sheets/data sources are derived from separate reports with completely different data & headers.
thanks in advance for any help.
I finally came across something useful on contextures
It works exactly how I want it to, I simply linked the slicer connected to 4 other pivot tables with a separate cache than my "main" slicer/table and hid the linked slicer. When I select and option from the main slicer, it updates the hidden slicer thus filtering all the other pivot tables.

Copy Filters from one PowerPivot PivotTable to another

I have 2 PivotTables that were created from PowerPivot connections. I would like the second PivotTable to change based on a selection the user makes on the first PivotTable. I have some VBA background, so you don't need to write the whole code but point me to the right functions/structure.
If you use slicers, you can simply link both tables to the same set of slicers. You can even have multiple copies of each slicer.
It's the same in all versions of Excel since 2010. Here's a link.
Edit: Adding information from my comment below here.
You can use this technique even when you're explicitly using a filter on the pivot table, whether by adding a field to the Filters section, or by putting that field on the row/column labels and then limiting the selection based on that row/column header drop down. You can mix and match these as well, with Pivot1 having the field in question in the Filters section, and Pivot2 having the field in the Rows section.
Just create your two pivot tables as normal, and then connect both to the same slicer. This slicer can be hidden on another sheet that is not displayed to the end users. This solution is much more expedient than the VBA solutions I've seen.

Filter Pivot in Report Filter for a range of values

I have the following issue. I have large dataset with product codes, dates at which they are shipped and their tranport method.
I would like to create a pivot of the product code on the left and their transport method on the top. But as variable I would the pivot to only present a range of dates. These dates are presented in the form yyyyww. (example: from 201420 to 201505).
I have a column where each of the individual year and weeknumber as presented, so they could be looked up from there. This also allows it to be a variable.
How can I get this pivot to present this information between a date range?
In Excel 2010 and later you can insert a slicer for any field in the data source and click the values in the slicer that you want to include in the pivot table. Shift click to select contiguous slicer values, Ctrl-click to pick non-contiguous slicer items.
As an alternative to slicers, you can drag the desired filter columns into the filter pane.
The screenshot shows the column names in the filter pane and how the filters appear above the pivot table. It also shows slicers to the right of the pivot table. A pivot table in Excel 2010 and later can have both filters and slicers. Earlier versions can only have filters.
The following screenshot shows what happens when values have been clicked on the slicers. These selected slicer values are mirrored in the filter settings (and vice versa). So, a slicer is just a user-friendly way to select one or more filters for the pivot table.
Please note that you would normally only use one method: either slicer OR filters. Choose the one that you like most.

Resources