A dashboard is a single screen that answers the key questions at a glance. We'll combine everything from this course into one.
A finished one-page business dashboard with KPIs and charts
1. DATA layer → raw data as an Excel Table (one sheet)
2. ANALYSIS layer→ PivotTables doing the math (hidden sheet)
3. DASHBOARD layer→ charts + KPIs + slicers (the pretty sheet)
Keep these on separate sheets. Never build charts directly on raw data.
Big single numbers grab attention. Build them with functions from earlier chapters:
1Total Sales: =SUM(Sales[Revenue])
2Avg Order: =AVERAGE(Sales[Revenue])
3Top Region: =INDEX(Regions, MATCH(MAX(Totals), Totals, 0))
4vs Target: =SUM(Sales[Revenue]) / TargetFormat each in a large font inside a colored box — instant KPI card.
Now one click on "North" filters every chart and KPI on the page simultaneously.
View tab → uncheck Gridlines & Headings → clean canvas
Insert → Shapes/Text Box → title bar
Page Layout → set print area → shareable PDF
You've now built the full pipeline: clean data → formulas → lookups → PivotTables → charts → an interactive dashboard. That's professional-grade Excel. 🎉