Preparing your learning space...
20% through AI Dashboards tutorials
A dashboard is one Excel sheet that shows the health of a business at a glance using numbers, charts, and filters. Microsoft Copilot and ChatGPT speed this up by writing formulas, cleaning data, and suggesting layouts for you. Master this shared method first — every domain dashboard in this module builds on it.
This module covers nine dashboards: Sales, HR, Finance, Marketing, Inventory, Student, Hospital, Project, and CEO. They all use the same AI tools but answer different questions, so they are grouped into four closely-related thematic tutorials after this one:
This first tutorial teaches the shared method; the next four apply it to each theme and add only the domain-specific KPIs, data model, and prompts. Read this one first.
You need a Microsoft 365 subscription with Copilot for Excel, plus a free or paid ChatGPT account. Your data should live in an Excel table (not a plain range) so Copilot can read column names.
Why it matters: Copilot reasons over structured tables. A messy range with blank rows and merged headers will confuse it.
Turn a range into a table
Select your data → Insert → Table (or press Ctrl + T)
Give the table a clear name like SalesData or HRData so your prompts stay readable.
Follow the same five steps for any dashboard:
This order avoids rework. Always plan the KPIs before you draw a single chart.
Copilot sits in the Excel ribbon. Click a cell inside your table, then type a task in plain English.
Example prompt in Copilot
Highlight duplicate rows in this table and add a column that flags them.
Copilot returns a formula such as:
=IF(COUNTIFS([OrderID],[@OrderID])>1,"Duplicate","")
Simple explanation: COUNTIFS counts how many times that OrderID appears; if it shows up more than once, the row is labeled "Duplicate."
Use these four patterns so Copilot and ChatGPT give consistent, reusable results.
| Pattern | Use it for | Example prompt |
|---|---|---|
| Analyze | Spot trends | "What are the top 3 trends in this data?" |
| Add column | New metric | "Add a column for profit margin as revenue minus cost." |
| Chart | Visualize | "Insert a column chart of sales by region." |
| Summarize | Insights | "Write 3 bullet insights a manager would care about." |
ChatGPT planning prompt
I run an HR team. Suggest 6 KPIs for an Excel dashboard, with the source columns I need and the Excel formula for each.
ChatGPT returns a ready spec you can paste straight into Excel.
A KPI card is one big number with a label, e.g. "Total Revenue: $1.2M". Place 4–6 across the top of the dashboard.
Total revenue
=SUM(SalesData[Revenue])
Month-over-month growth
=(SUMIFS(SalesData[Revenue],SalesData[Month],"2026-07")- SUMIFS(SalesData[Revenue],SalesData[Month],"2026-06"))/ SUMIFS(SalesData[Revenue],SalesData[Month],"2026-06")
Format that result as a percentage to show growth at a glance.
Pick the chart by the question you are answering, not by how it looks.
Copilot prompt:
Add a line chart showing the revenue trend by month from this table.
Slicers let viewers filter the whole dashboard by clicking buttons. They connect to PivotTables and tables.
Steps
Insert → Slicer → choose Region and Month
In Slicer settings, open Report Connections and link it to every PivotTable on the sheet. One click now filters all charts.
Note: Plain
SUMformulas do not react to slicers. For slicer-driven visuals, build the chart from a PivotTable, or useSUMIFSfed by cells the slicer controls.
Keep it scannable. Top row = KPI cards. Middle = main charts. Bottom = a detail table. Use one accent color on a neutral background.
Best practices:
Save your progress and earn XP for completing tutorials.
4 questions · Pass with 70%+
1What is the correct order of the 5-step AI Dashboard Workflow?
2Why must data be stored as an Excel Table before using Copilot?
3Which prompt pattern should you use to make Copilot insert a chart?
4Why do plain SUM formulas fail to react to slicers?
Technology
Excel with AI
Lesson group
AI Dashboards
Progress
20% complete