Dashboard Mode - Excel on the web
Dashboard Goal
See how sales perform across regions and products using Excel on the web. Quickly find total sales, average sales, and top-selling products.
See how sales perform across regions and products using Excel on the web. Quickly find total sales, average sales, and top-selling products.
| Region | Product | Sales |
|---|---|---|
| East | Apples | 100 |
| West | Apples | 150 |
| East | Oranges | 200 |
| West | Oranges | 120 |
| East | Bananas | 90 |
| West | Bananas | 110 |
=SUBTOTAL(9,C2:C7) Result: 770=SUBTOTAL(1,C2:C7) Result: 128.33=SUMIF(A2:A7,"East",C2:C7) Result: 390=SUMIF(A2:A7,"West",C2:C7) Result: 380=INDEX(B2:B7,MATCH(MAX(C2:C7),C2:C7,0)) Result: Oranges+----------------------+-----------------------+ | Total Sales: 770 | Average Sales: 128.33 | +----------------------+-----------------------+ | Sales East: 390 | Sales West: 380 | +----------------------+-----------------------+ | Top Selling Product: Oranges | +---------------------------------------------+ | Sales Table (Region, Product, Sales) | | East, Apples, 100 | | West, Apples, 150 | | East, Oranges, 200 | | West, Oranges, 120 | | East, Bananas, 90 | | West, Bananas, 110 | +---------------------------------------------+
Use Excel on the web filters to select a specific Region or Product. When you filter by Region, the Total Sales, Average Sales, Sales by Region, and Top Selling Product update automatically to show only filtered data. The Sales Table also updates to show only matching rows.
If you add a filter for Region = "East", which components update?