Preparing your learning space...
88% through AI + Excel Projects tutorials
A finance dashboard shows income, expenses, cash flow, and trends in one view. You build it in Excel and use Copilot and ChatGPT for the cash-flow formulas and the trend narrative.
finance-dashboard.xlsx │ ├── Sheet: Txns (Date, Type, Category, Amount) ├── Sheet: Dashboard (KPIs, cash flow, charts) └── Module: FinMacros (optional VBA)
A Tx table and income/expense totals.
Cash flow is income minus expense.
=SUMIFS(Tx[Amount], Tx[Type], "Income") =SUMIFS(Tx[Amount], Tx[Type], "Expense")
Ask ChatGPT:
"Write SUMIFS that sums Amount where Type is Income, and another for Expense."
A running cash flow column per month or row.
Shows whether you are gaining or losing money.
=SUMIFS(Tx[Amount], Tx[Type], "Income") - SUMIFS(Tx[Amount], Tx[Type], "Expense")
Ask Copilot:
"Write cash flow as SUMIFS Income minus SUMIFS Expense."
Totals per category.
Shows where money goes.
=SUMIFS(Tx[Amount], Tx[Category], A2, Tx[Type], "Expense")
Ask ChatGPT:
"Write SUMIFS that sums Amount where Category equals A2 and Type is Expense."
Trend charts and a written summary.
Managers read charts and short text faster.
Chart income vs expense by month, then paste totals into ChatGPT.
Ask ChatGPT:
"Summarize this monthly cash flow in three sentences and note the riskiest month."
=SUMIFS(Tx[Amount], Tx[Type], "Income") =SUMIFS(Tx[Amount], Tx[Type], "Expense") =SUMIFS(Tx[Amount], Tx[Type], "Income") - SUMIFS(Tx[Amount], Tx[Type], "Expense") =SUMIFS(Tx[Amount], Tx[Category], A2, Tx[Type], "Expense")
ChatGPT: "SUMIFS Amount where Type Income / Expense." Copilot: "Cash flow Income SUMIFS minus Expense SUMIFS." ChatGPT: "SUMIFS Amount where Category A2 and Type Expense." ChatGPT: "Summarize monthly cash flow in three sentences."
finance-dashboard.xlsx.Input: Income 1000, Expense 600. Expected Output: Cash flow 400. Explanation: 1000 − 600.
Input: Expense Food 200, Expense Rent 400. Expected Output: Food 200, Rent 400. Explanation: SUMIFS splits by category.
Input: No transactions. Expected Output: All totals 0. Explanation: SUMIFS finds no matches.
Problem: Shows loss. Reason: A transaction typed as Expense by mistake. Solution: Use a Type dropdown for exact text.
Problem: Off by some amount. Reason: Mixed Income/Expense in same category. Solution: Add the Type condition to SUMIFS.
Problem: No data. Reason: Wrong range selected. Solution: Select the summary cells, not headers only.
Save your progress and earn XP for completing tutorials.
4 questions · Pass with 70%+
1Cash flow = ?
2Category spend uses?
3Why add Type condition to category SUMIFS?
4ChatGPT can?
Technology
Excel with AI
Lesson group
AI + Excel Projects
Progress
88% complete