A pivot table is an interactive summary that cross-tabulates a large list, grouping records and aggregating a numeric field — without writing a single formula and without altering the source data.
Insert → PivotTable, then drag field names into four areas.
An example. Take 5,000 sales records with the fields Date, Region, Salesperson, Product, Quantity, Amount.
Drag Region to Rows, Month to Columns and Amount to Values as Sum. The result is a complete region-by-month sales table:
Now drag Product into Rows in place of Region, and the same 5,000 records are re-summarised by product instantly. Add Salesperson beneath Region and the table nests one inside the other. That rearrangement is the pivot.
Why it beats SUMIF formulas.
1. No formulas to write, and none to get wrong. The table above would need 3×3 SUMIFS formulas plus row and column totals — around sixteen formulas, each with absolute references to get right. The pivot table needs three drags.
2. It discovers the categories itself. SUMIFS requires you to know in advance that the regions are North, South and East, and to have typed those labels as row headings. A pivot table reads the distinct values out of the data. If a fourth region appears next month, the pivot table shows it on refresh; the SUMIFS grid silently omits it, and its sales vanish from a total that still looks complete.
3. Rearranging costs nothing. Summarising by product instead of by region means one drag. With formulas it means rebuilding the entire grid.
4. It scales. The same three drags handle 5,000 rows or 500,000. Sixteen formulas over half a million rows recalculate slowly, and a hundred such grids make a workbook unusable.
5. Extras come free: row and column totals, percentage of total, grouping dates into months, quarters and years, expanding a cell to see the underlying records (drill down), slicers, and pivot charts.
The one caution. A pivot table does not update itself when the source data changes — it must be refreshed (right-click → Refresh). SUMIF formulas recalculate at once. This is the single genuine advantage of formulas, and the reason a live dashboard cell is often better as a formula while analysis is better as a pivot table.
When formulas are still right: a handful of specific figures embedded in a report, values that must recalculate instantly, or a result that feeds further calculations. When a pivot table is right: exploring a large list, or any summary whose shape may need to change.