Tested tool guide
Tested browser tools
Checked August 16, 2026
What Pivot Table Builder does, with a checked example
Drop a CSV or JSON file on this page and its columns become draggable fields. Drag one column onto the row shelf, another onto the column shelf, and a numeric column onto the value shelf, and the tool regroups every record into a cross-tabulated grid of sums, counts, averages, or whichever aggregate you pick. No formulas, no SQL; the shelf layout is the query. The common misread: the grid is a summary, not the data. Individual rows disappear into cells, an empty cell means no records fell into that combination (not a recorded zero), and the same file yields very different tables depending on where each field is placed.
Worked example
A concrete input and expected output from the current implementation.
Input
region,product,sales
North,Widget,120
North,Gadget,80
South,Widget,90
South,Gadget,110
North,Widget,30
with rows: region, columns: product, values: sum of sales
->
Expected output
Widget Gadget Total
North 150 80 230
South 90 110 200
Total 240 190 430
Each cell adds the sales of the records matching its region and product: North/Widget is 120 + 30 = 150, and the other three cells hold single records. The totals reconcile: 150 + 80 = 230 for North, 150 + 90 = 240 for Widgets, and 430 for the whole file (120 + 80 + 90 + 110 + 30).