Preparing your learning space...
80% through AI Dashboards tutorials
Financial and executive dashboards sit at the top of the reporting chain. Finance measures plan-vs-actual and cash; the CEO dashboard is the capstone that summarizes Finance plus every other function into one screen. They are paired because the CEO view is built directly from finance and the other domain dashboards. We use the foundation method for both.
CFOs, controllers, and business owners use this to answer: Are we over or under budget? Is cash healthy? Where did the plan miss? It turns a ledger export into a control panel.
Load a table named FinanceData with these columns:
| Column | Example |
|---|---|
| Account | Revenue |
| Category | Software |
| Month | 2026-07 |
| Actual | 54000 |
| Budget | 50000 |
| CashFlow | 12000 |
Ask Copilot to add a variance column:
Add a column VariancePct as (Actual - Budget) / Budget.
KPI cards:
=SUM(FinanceData[Actual])-SUM(FinanceData[Budget]) =SUM(FinanceData[CashFlow]) =AVERAGE(FinanceData[VariancePct])
The net-profit card subtracts total budget from total actual as a simple stand-in for expense net.
Copilot prompt:
Insert a combo chart of Actual versus Budget by month from FinanceData.
Flag categories that overspent:
=IF([@VariancePct]>0.1,"Over","OK")
A variance above 10% is marked "Over" so finance can investigate.
Design a finance dashboard in Excel from a table named FinanceData with columns Account, Category, Month, Actual, Budget, CashFlow. Give KPIs, charts, and a Copilot prompt to build it.
Top: KPI cards (Net Profit, Cash Balance, Avg Variance). Middle: Actual-vs-Budget combo + Cash trend line. Bottom: Expense-by-category column. Slice by Month and Category.
The CEO and leadership team use this to answer: Are we healthy across revenue, cost, people, and delivery? It is a "summary of summaries" drawing KPIs from the Sales, Finance, HR, and Project dashboards you already built.
Load a table named CEOScorecard with one row per metric:
| Column | Example |
|---|---|
| Metric | Revenue |
| Value | 1200000 |
| Target | 1100000 |
| Trend | Up |
| Owner | Sales |
Pull the values from your other dashboards using cell links, e.g. =SalesDashboard!B2.
Ask Copilot to add a status column:
Add a column Status as Green if Value >= Target, Amber if within 10%, else Red.
KPI cards (link to source dashboards):
=FinanceDashboard!B4 =HRDashboard!B2 =ProjDashboard!B6
Each card shows the live number from its source sheet.
Copilot prompt:
Insert a combo chart of revenue and profit by month from CEOScorecard.
Use red/amber/green so the eye catches problems:
=IF([@Value]>=[@Target],"Green", IF([@Value]>=[@Target]*0.9,"Amber","Red"))
Green meets target, Amber is within 10%, Red misses.
Design a CEO dashboard in Excel that summarizes revenue, profit, cash, headcount, attrition, and project status from separate dashboard sheets. Give the scorecard structure, charts, and a Copilot prompt.
Top: KPI cards (Revenue, Profit, Cash, Headcount). Middle: RAG scorecard table. Bottom: Revenue-&-Profit combo + Initiative progress bar. Add a Month slicer that flows to source PivotTables.
Save your progress and earn XP for completing tutorials.
4 questions · Pass with 70%+
1What is the formula for Budget Variance %?
2How does the CEO Dashboard pull live numbers from other sheets?
3In the CEO RAG status formula, when does a metric turn "Amber"?
4Which chart type is recommended for comparing Actual vs Budget by Month in Finance?
Technology
Excel with AI
Lesson group
AI Dashboards
Progress
80% complete