Dashboard Mode - Column transformations
Dashboard Goal
This dashboard helps you transform and analyze sales data by creating new columns with formulas. You will see total sales, sales tax, and sales after tax for each product.
This dashboard helps you transform and analyze sales data by creating new columns with formulas. You will see total sales, sales tax, and sales after tax for each product.
| Product | Price | Quantity Sold |
|---|---|---|
| Notebook | 5 | 100 |
| Pen | 2 | 300 |
| Backpack | 20 | 50 |
| Calculator | 15 | 40 |
| Ruler | 3 | 150 |
=B2*C2 (multiplies Price by Quantity Sold)=D2*0.1 (calculates 10% tax on Total Sales)=D2+E2 (adds Total Sales and Sales Tax)=SUM(D2:D6)=SUM(E2:E6)=SUM(F2:F6)+-----------------------------+ | Sales Data Table | | (Columns A to C, rows 1-6) | +-----------------------------+ | Total Sales | Sales Tax | Sales After Tax | | (Cols D-F, rows 1-6) | +-----------------------------+ | Summary Table | | (Cells A8:B10) | +-----------------------------+
You can change the Quantity Sold or Price values in the data table. When you do, the Total Sales, Sales Tax, and Sales After Tax columns update automatically. The summary table below also updates to show new totals.
If you change the Quantity Sold for the Pen from 300 to 400, which components update?