Excel Agility: Pivot Tables Part 2
Notice: No webinar is currently available in this series.
This webinar is not currently available, new dates coming soon.
Frequently Asked Questions
Power Pivot is a free Excel add-in that enables you to build Data Models—relationships between multiple tables that work like a mini database inside Excel. Unlike standard pivot tables, which can only analyze a single flat data table, Power Pivot lets you connect several related tables (for example, a sales transactions table, a products table, and a customers table) and create pivot tables that draw from all of them simultaneously without VLOOKUP pre-processing. Power Pivot also introduces DAX (Data Analysis Expressions), a formula language for creating calculated columns and measures that go beyond what standard pivot table calculated fields can achieve—including rolling averages, year-over-year comparisons, and context-aware calculations. To enable Power Pivot, go to File > Options > Add-ins > COM Add-ins and check Microsoft Power Pivot for Excel. Power Pivot is available in Excel 2010 Professional Plus and later, and all Microsoft 365 plans. For finance and analytics professionals working with data from multiple sources, Power Pivot eliminates the need to flatten and merge datasets before analysis, dramatically reducing pre-processing time.
A standard pivot table Count counts every row including duplicates—but Distinct Count (also called Count Unique) counts only unique values, which is essential for questions like 'how many unique customers placed orders this month?' Distinct Count is not available in a standard pivot table; it requires adding your data to Excel's Data Model first. When creating the pivot table, check Add this data to the Data Model in the Create PivotTable dialog. Once the pivot table is built from the Data Model, right-click the value field, go to Value Field Settings, and you will see Distinct Count as an option in the summarize function list alongside Sum, Count, Average, etc. For users without access to a Data Model pivot table, a workaround is to add a helper column in the source data using COUNTIF to flag the first occurrence of each unique value, then sum those flags. Power Pivot users can also create Distinct Count measures using the DISTINCTCOUNT DAX function. Distinct Count is one of the most frequently requested pivot table features and is a core topic in intermediate to advanced Excel pivot table training.
To analyze data across multiple related tables in a single pivot table, you use Excel's Data Model and the Relationships feature. Start by converting each table to an Excel Table (Ctrl+T) with a meaningful name. When creating the pivot table, check Add this data to the Data Model—this loads the tables into Power Pivot's relational engine. Then go to Power Pivot > Manage > Diagram View to draw relationships between tables by dragging the shared key field (like Customer ID or Product Code) from one table to the matching field in another. Once relationships are defined, when you create a pivot table from the Data Model, all related table fields appear in the field list simultaneously. You can place Product Name from the Products table and Sales Amount from the Transactions table in the same pivot table without any VLOOKUP preparation. This approach handles millions of rows efficiently, is far more maintainable than merged flat tables, and eliminates data duplication. For organizations managing relational data from ERP or CRM systems, the Data Model is the professional-grade Excel solution for multi-source pivot table analysis.
DAX (Data Analysis Expressions) calculated measures are custom calculations created in Power Pivot that operate on the Data Model, offering far greater analytical power than standard pivot table calculated fields. While standard calculated fields apply fixed formulas to aggregated values and can produce incorrect results for ratios or time-based calculations, DAX measures are context-aware—they automatically adjust their calculation based on which filters, rows, and columns are active in the pivot table at any moment. For example, a DAX measure can calculate year-over-year growth, a rolling 12-month average, or a cumulative total that resets by year—all impossible with standard calculated fields. DAX functions include CALCULATE (to modify filter context), SUMX and AVERAGEX (row-by-row iteration), DATEADD and TOTALYTD (time intelligence), and RELATED (cross-table lookups). Calculated measures are defined in the Power Pivot data model and appear in every pivot table connected to that model, making them reusable across an entire workbook. For FP&A professionals and business analysts, DAX measures represent a transformative step up from formula-based Excel reporting.
A pivot chart is a dynamic chart directly linked to a pivot table—filtering or pivoting the table automatically updates the chart. To create one, click anywhere in the pivot table and go to PivotTable Analyze > PivotChart (or Insert > PivotChart). Select your chart type and click OK. The chart appears with its own field list, allowing you to add chart-specific filters independent of the pivot table's row and column filters. Slicers connected to the pivot table also control the pivot chart, enabling fully interactive dashboards where a Slicer click updates both the table and the chart simultaneously. Pivot charts retain their field-based filtering after refreshes, unlike standard charts that reference fixed ranges. A limitation is that some chart types—such as scatter/bubble and certain combination charts—are not available in pivot charts. For dashboards where visual interactivity is important, pivot charts with Slicers provide the most responsive and maintainable charting solution in standard Excel, requiring no VBA or manual chart range management.