Dashboard Mode - Row and column fields
Dashboard Goal
Understand how to organize data using row and column fields in a pivot table to analyze sales by product and region.
Understand how to organize data using row and column fields in a pivot table to analyze sales by product and region.
| Order ID | Product | Region | Sales |
|---|---|---|---|
| 1001 | Apples | East | 120 |
| 1002 | Oranges | West | 150 |
| 1003 | Bananas | East | 90 |
| 1004 | Apples | West | 200 |
| 1005 | Bananas | West | 130 |
| 1006 | Oranges | East | 170 |
| 1007 | Apples | East | 160 |
Product in Rows, Region in Columns, and Sales in Values (Sum).=SUMIF(B2:B8, "Apples", D2:D8) for Apples.=SUMIF(C2:C8, "East", D2:D8) for East region.+-----------------------+-----------------------+ | Pivot Table | Total Sales per Product| | (Rows: Product, | Apples: 440 | | Columns: Region) | Oranges: 320 | +-----------------------+-----------------------+ | Total Sales per Region | | | East: 540 | | | West: 480 | | +-----------------------+-----------------------+
Adding a filter for Region will update the pivot table and total sales per product to show only sales from the selected region. Similarly, filtering by Product will update total sales per region and the pivot table accordingly.
If you add a filter to show only Region = East, which components update and what are the new totals?