Group any Salesforce object down the rows and across the columns, aggregate what sits in the middle, and let people open a cell to see the records behind the number.
Group down the rows, group across the columns, put more than one measure in the body, then select a cell to read the records that produced the number.
The pivot table ships for Lightning pages, Screen Flows and your own Lightning Web Components. It is the one Avonni component that does not yet run inside Experience Cloud sites.
Build it in the Component Builder: pick the fields that group the rows, the fields that group the columns, and the measure that fills the cells. Drop the result anywhere the App Builder accepts a component.
Dynamic ComponentsPut a summary in front of someone at the moment they have to decide something, on the screen where the decision happens, instead of sending them to a report and hoping they come back.
Flow Screen ComponentsThe data driven pivot builds the aggregate query from your mapping, runs it, and feeds the pre-aggregated rows to the table. You skip the part where you hand write a GROUP BY CUBE.
LWC ComponentsThe number every forecast call opens with, on the page the team already has open, refreshed the moment an opportunity moves.
Group down by product, across by month, count the cases. Open a cell that looks wrong and read the actual records behind it.
Sum, average and count distinct on the same view, with subtotals per account and a grand total that nobody has to add up by hand.
Salesforce reports do this job well, and they do it in the report tab. What changes is that the pivot sits inside the page or the flow where people already are, and the totals are computed server side before anything renders, so a large object does not turn into a slow page.
Browse the component libraryInstall the package, point a pivot at one object and put the answer on the page where the question keeps getting asked.