• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

creating a pivot table from a table...

konijay

New Member
Good day all


I have raw data and turned it into a TABLE.


then I created a pivot table from it.


then I filter out something from the TABLE. It's now hiding some rows.


But the pivot table does not reflect that filtered info from the table...it's also reading rows that are hiding.


How can pivot table reflect filtered data from the table?


thanks
 
You can't, directly. You either need to filter things in the PivotTable(PT) rather than in your data, or you can add a helper column with something like this:

=SUBTOTAL(103,A2)


This formula will evaluate to 1 for cells that have data are are not hidden, and 0 for any hidden row. Once you add the name of helper column to your PT, you could set it as a PageField item and filter it to 1. That way, (after refreshing PT) you'll only see unfiltered table data in the PT.
 
Back
Top