Preparing your learning space...
50% through AI + Excel Projects tutorials
A CRM dashboard tracks leads and customers through deal stages and shows how many you win. You build it in Excel and use Copilot and ChatGPT to write the stage formulas and the insight summary.
crm-dashboard.xlsx │ ├── Sheet: Deals (DealID, Customer, Stage, Value) ├── Sheet: Dashboard (stage counts, win rate, chart) └── Module: CrmMacros (optional VBA)
A table Deal with Stage from a dropdown.
Stages drive every count.
Make the table and a dropdown Lead,Contacted,Won,Lost.
=COUNTA(Deal[DealID])
Ask ChatGPT:
"How do I add a dropdown with the values Lead, Contacted, Won, Lost in Excel?"
Counts and total value for each stage.
Shows where money sits in the pipeline.
=COUNTIF(Deal[Stage], A2) =SUMIF(Deal[Stage], A2, Deal[Value])
Ask Copilot:
"Write COUNTIF and SUMIF for deals where Stage equals A2, summing the Value column."
A percentage of won deals out of closed deals.
Win rate is the key sales health metric.
=IFERROR(COUNTIF(Deal[Stage],"Won")/(COUNTIF(Deal[Stage],"Won")+COUNTIF(Deal[Stage],"Lost")), 0)
Ask ChatGPT:
"Write an Excel win-rate formula: won divided by won plus lost, with divide-by-zero handling."
A bar chart of value per stage and an AI paragraph.
Charts and words make the pipeline clear to managers.
Select the stage value table, Insert > Bar Chart.
Paste stage counts into ChatGPT:
"Summarize this sales pipeline in three sentences and say the biggest risk."
=COUNTIF(Deal[Stage], A2) =SUMIF(Deal[Stage], A2, Deal[Value]) =IFERROR(COUNTIF(Deal[Stage],"Won")/(COUNTIF(Deal[Stage],"Won")+COUNTIF(Deal[Stage],"Lost")), 0)
ChatGPT: "Dropdown Lead, Contacted, Won, Lost." Copilot: "COUNTIF and SUMIF for Stage A2 sum Value." ChatGPT: "Win rate won/(won+lost) with error handling." ChatGPT: "Summarize pipeline in three sentences."
crm-dashboard.xlsx.Input: Won 3, Lost 1, Open 6. Expected Output: Win rate 75% (3/4 closed). Explanation: Only won + lost count as closed.
Input: No Won or Lost yet. Expected Output: Win rate 0. Explanation: IFERROR avoids divide-by-zero.
Input: Three Won deals worth 100, 200, 300. Expected Output: Won value 600. Explanation: SUMIF adds the values.
Problem: Percentage too high. Reason: Divided by total deals instead of closed. Solution: Use won/(won+lost) only.
Problem: Count is zero. Reason: Stage text differs from dropdown. Solution: Use the dropdown for exact text.
Problem: No bars. Reason: Selected the wrong range. Solution: Select stage and value columns together.
Save your progress and earn XP for completing tutorials.
4 questions · Pass with 70%+
1 Win rate formula base?
2=COUNTIF(Deal[Stage], A2) does?
3Why IFERROR on win rate?
4ChatGPT can?
Technology
Excel with AI
Lesson group
AI + Excel Projects
Progress
50% complete