Forum Discussion
Using Pivot table with filtering by conditions
- Jun 29, 2021
You would like to filter source data. PivotTable ignores filtering of the source and works on entire data. Workarounds could be
- create new filtered table and build PivotTable on it, sample is here Pivot Table from Filtered List Visible Rows – Contextures Blog
- load parameter to data model, e.g. with Power Query, create DAX measure which uses this parameter to sum data and build PivotTable on data model using such measure
You would like to filter source data. PivotTable ignores filtering of the source and works on entire data. Workarounds could be
- create new filtered table and build PivotTable on it, sample is here Pivot Table from Filtered List Visible Rows – Contextures Blog
- load parameter to data model, e.g. with Power Query, create DAX measure which uses this parameter to sum data and build PivotTable on data model using such measure
- Rosy_888Jul 25, 2021Copper Contributor
Thank you SergeiBaklan