Swanson Academy for Business & Finance · Unit 2.3 · Grade 9 · Quarter 2

Interactive Manual

Complete guide to every game, practice simulator, and quiz — for students and facilitators

About This Manual

What's Covered Here

Complete reference for every interactive element in Unit 2.3

Unit 2.3 — Spreadsheet Fundamentals — is the most technically hands-on unit in Quarter 2. The content is immediately applicable: SUM, AVERAGE, IF, and SUMIF are used in every financial spreadsheet a professional builds. The interactive tools are designed to move students from recognition to application — from knowing what SUMIF does to writing it correctly for a real budget scenario.

This unit's Practice Simulator is the most functionally complex tool in the Quarter 2 suite — a live formula engine embedded in the study guide that evaluates actual spreadsheet syntax. The Task Solutions section of this manual documents each target formula and the teaching point behind it.

ToolLocationFocus
🔗 Formula MatchStudy Guide → Games tabMatch financial scenarios to the correct function
📊 Budget BuilderStudy Guide → Games tabApplied formula and chart selection in realistic scenarios
⚖️ True or FalseStudy Guide → Games tabSpreadsheet facts vs. common misconceptions — 10 statements
🧮 Practice SimulatorStudy Guide → Practice tabLive spreadsheet with 6 guided formula-entry tasks
📟 BA II PlusStudy Guide → Practice tab (link)TVM calculations — routes to bbym-business-calculator.html
✏️ Unit Quizg9-2-3-quiz.htmlComprehensive mastery — 20 questions from 23-question bank
Game 1 of 3 · Study Guide → Games Tab

🔗 Formula Match

Six financial scenarios matched to the correct function or reference type

🔗
Formula Match

Six pairs connecting real financial tasks to the specific function or syntax that solves them. The match is displayed in monospace font — students see the formula syntax directly, reinforcing correct spelling and structure alongside the conceptual match.

6 pairsMonospace displayShuffled each restart

The Six Pairs — Answer Key

SituationCorrect MatchWhy
Add up 12 months of expenses in B2:B13=SUM(B2:B13)SUM totals a contiguous range — the standard for any total in financial work
Find the average monthly spending in B2:B13=AVERAGE(B2:B13)AVERAGE computes the arithmetic mean; more reliable than SUM/12 when cells may be empty
Show "Deficit" if total in B20 is below zero=IF(B20<0,"Deficit","OK")IF tests a condition and returns one of two values — the core conditional logic function
Count how many months had spending above $500=COUNTIF(C2:C13,"Over")COUNTIF counts cells meeting a condition — here, counting "Over" labels in a status column
Total only the "Rent" rows from a category list=SUMIF(A2:A50,"Rent",B2:B50)SUMIF sums conditionally — only the rows where column A says "Rent"
Lock the tax rate cell so copying won't move it$B$2 (absolute reference)Dollar signs lock both the column and row — the reference stays fixed when the formula is copied
🎓
Facilitator Note — Formula Match

The SUMIF vs. COUNTIF distinction is the most commonly missed pair. After the game, ask: "What would happen if you used COUNTIF instead of SUMIF for the Rent total?" (Answer: it would count the number of Rent rows, not sum the dollar amounts.) This clarifies the count vs. sum distinction that appears on the quiz.

Game 2 of 3 · Study Guide → Games Tab

📊 Budget Builder

Six applied scenarios — select the correct formula or chart type

📊
Budget Builder

Six AOBF student scenarios requiring formula selection, function identification, or chart type judgment. Each uses a named student and a realistic spreadsheet situation. Detailed explanations after each answer address the wrong choices directly.

6 scenarios4 choices eachExplains wrong answers

Scenario Answer Key

#Student / SituationCorrect AnswerCore Concept
1Marcus — SUM formula for D2:D8=SUM(D2:D8)SUM vs. chained addition; why SUM is preferred
2Destiny — IF formula for Deficit/Surplus in E9=IF(D9>B9,"Deficit","Surplus")IF logical direction: expenses > income = Deficit
3Aaliyah — average monthly grocery spending=AVERAGE(B2:B13)AVERAGE vs. SUM/12; empty cell handling
4DeShawn — total Food spending from category log=SUMIF(A2:A50,"Food",B2:B50)SUMIF for conditional totaling; COUNTIF counts, not sums
5Jerome — chart type for 6 budget categories as % of totalPie chartPie = proportions of a whole; line = trends over time
6Brianna — sorts only column B; rest stays putRow alignment breaks — wrong categories shown with wrong amountsAlways sort entire dataset; single-column sort destroys data integrity

Most frequently missed

Scenario 2 (Destiny, IF direction) catches students who confuse which side of the comparison triggers the deficit. Scenario 6 (Brianna, single-column sort) is the most important scenario in the unit — the error it describes is irreversible and extremely common in practice. If time permits, demonstrate it live on a projected spreadsheet before the quiz.

🎓
Facilitator Note — Budget Builder

After Scenario 4 (SUMIF), have every student open a blank spreadsheet and write one SUMIF formula from scratch on sample data. The transition from recognizing the correct answer to independently writing the syntax is the critical skill gap in this unit. Budget Builder identifies the correct function; the Practice Simulator builds the muscle memory.

Game 3 of 3 · Study Guide → Games Tab

⚖️ True or False

Spreadsheet facts vs. common misconceptions — 10 statements

⚖️
True or False

Ten statements covering absolute references, AVERAGE behavior with empty cells, 3D charts, COUNTIF, sort safety, IF with text output, SUMIF mechanics, BA II Plus I/Y entry, and the 50/30/20 rule. Shuffled each round. Recommended as exit ticket before quiz.

10 statementsShuffled each roundExit ticket before quiz

Answer Key — All 10 Statements

#Statement (summarized)Answer
1Cell references update automatically; hardcoded numbers do notTRUE — cell references create a live model
2AVERAGE counts all 12 cells even if some are emptyFALSE — AVERAGE ignores empty cells in its denominator
3BA II Plus I/Y must be annual rate with no adjustment for monthlyFALSE — I/Y must be per-period (annual ÷ 12 for monthly)
4Pie chart is best for showing monthly spending trend over 12 monthsFALSE — line chart for trends; pie for proportions at one point in time
5=SUMIF(A2:A50,"Rent",B2:B50) totals column B where A = "Rent"TRUE
6Sorting only the key column is acceptableFALSE — always sort entire dataset; single-column sort breaks row alignment
7IF can output text strings like "Over Budget"TRUE — IF returns any value type: text, number, or formula result
8=SUMIF(A2:A50,"Rent",B2:B50) adds only matching rowsTRUE — same as #5, reinforces the conditional behavior
9The five BA II Plus TVM variables: enter 4, compute the 5thTRUE — the five are mathematically linked by one equation
1050/30/20 rule: 50% applies to gross income before taxesFALSE — all allocations are based on after-tax (take-home) income
Practice Simulator · Study Guide → Practice Tab

🧮 Practice Simulator

A live formula engine — students type actual spreadsheet syntax and see results

🧮
Spreadsheet Practice Simulator

A functional mini-spreadsheet embedded in the study guide. Students click cells, type formulas, and the engine evaluates SUM, AVERAGE, IF, SUMIF, COUNTIF, and basic arithmetic with relative and absolute reference handling. Six guided tasks walk from basic totals through savings rate. Each task auto-checks the formula against the target and marks it complete.

Live formula evaluation6 guided tasksAuto-check completionReset preserves data

The Six Tasks — Solutions and Teaching Points

TaskCellTarget FormulaTeaching Point
1 — Total IncomeB9=SUM(B2:B8)SUM over a range. The only income source with a value is B2 (Part-time Job, $650) — all other B column cells are empty. SUM returns 650, ignoring blank cells.
2 — Total ExpensesD9=SUM(D2:D8)Same function, different column. Students apply the pattern learned in Task 1 to a new range. Expected result: $450+$280+$65+$110+$85+$100 = $1,090.
3 — Net IncomeE9=B9-D9Subtraction referencing two cells that were themselves computed by SUM formulas. Demonstrates chained formulas — E9 depends on B9 and D9. Result: 650−1090 = −440 (a deficit).
4 — IF Status FlagF2=IF(D2>200,"Review","OK")IF with a threshold comparison. D2 = Rent ($450), which exceeds $200 — result is "Review." Students practice the exact IF syntax: test, comma, true value in quotes, comma, false value in quotes.
5 — Average ExpenseB11=AVERAGE(D2:D8)AVERAGE on the expense column. Seven expenses average to $155.71. Demonstrates that AVERAGE works on any column, not just the one the formula is in.
6 — Savings RateB12=E9/B9Division: net income divided by total income. With the default data, E9 = −440 and B9 = 650, so the result is −0.677 (−67.7% savings rate — a stark deficit that illustrates why budget management matters). Students who increased income in B2 may see a different result.

How the auto-check works

Each task compares the student's entry against the exact target formula using case-insensitive normalization — spaces and capitalization differences are ignored. A student typing =sum(b2:b8) receives the same completion credit as =SUM(B2:B8). The task marker turns green and is crossed off when a match is detected. All six task completions trigger the celebration message.

Why Task 6 result is negative

The default dataset is intentionally structured to produce a budget deficit — total expenses ($1,090) far exceed the single income source ($650). This is pedagogically deliberate: it gives students a concrete reason to explore which expenses are fixed vs. variable, what income would be needed to break even, and what a 20% savings rate would require. The deficit outcome makes the budget a live problem to solve, not just a formula exercise to complete.

🎓
Facilitator Note — Simulator

After all 6 tasks are complete, ask: "This budget has a $440 monthly deficit. Using what you built, which two changes would move this budget to break even?" Students must reason about which cells to adjust (add income in B column, reduce variable expenses in D column) and how the formulas update automatically. This is the transition from formula practice to financial reasoning — the core goal of Unit 2.3.

External Tool · bbym-business-calculator.html

📟 BA II Plus Calculator

Time Value of Money — routes to the existing BBYM platform tool

How the BA II Plus Link Works

The Practice tab's BA II Plus link routes to bbym-business-calculator.html — the existing BBYM financial calculator platform tool. This is intentional: the BA II Plus is a standalone professional tool with its own curriculum context, and Unit 2.3's introduction to TVM is a conceptual bridge to that tool, not a replacement for it.

What to cover in Unit 2.3's BA II Plus introduction (Topic 6)

The study guide introduces the five TVM variables conceptually (N, I/Y, PV, PMT, FV) and provides one worked example (monthly car loan payment). The full BA II Plus keypad simulation and extended TVM practice lives in the dedicated calculator tool. Unit 2.3 teaches students what TVM is and why the calculator matters — the dedicated tool teaches students how to use it fluently.

💡
Sequencing Recommendation

Complete Topics 1–5 and the simulator before opening the BA II Calculator. Topic 6 (BA II Plus) and the calculator link work best as the unit's closing activity — students arrive having built a full budget in the simulator and are primed to understand why a dedicated TVM tool adds capability beyond what a spreadsheet formula provides.

BA II Plus TVM worked example from Topic 6

VariableEntryMeaning
N4848 monthly payments
I/Y0.5 (6 ÷ 12)0.5% per month (6% annual ÷ 12)
PV12000$12,000 loan amount (positive = money received)
FV0Loan is fully paid off at end
PMTCPT → −281.85$281.85/month payment (negative = money paid out)
Graded Assessment · g9-2-3-quiz.html

✏️ Unit Quiz Engine

20 questions from a 23-question bank — formulas, functions, budgets, charts, and TVM

✏️
Unit 2.3 Quiz Engine

Same engine as prior units. Unit 2.3 has the highest proportion of syntax-level questions in Quarter 2 — students must recognize correct formula syntax, not just conceptual definitions. Shuffled answer choices prevent pattern-matching. Full explanation on every question after answering.

23-question bank20 drawn per attemptShuffled choicesUnlimited retakes

Question Bank Coverage

TypeCountTopics Covered
Multiple Choice15SUM syntax, absolute vs. relative reference, AVERAGE definition, IF with text output, SUMIF, COUNTIF, chart type selection (line for trends), BA II Plus I/Y entry, absolute reference in denominator, COUNT vs. COUNTA, Freeze Panes, single-column sort error, CPT function, 50/30/20 rule 20% allocation, combined budget formula synthesis
True / False8Cell reference vs. hardcoded values, AVERAGE and empty cells, BA II Plus I/Y adjustment, pie chart for trends (false), SUMIF mechanics, single-column sort (false), TVM five-variable relationship, 50/30/20 gross vs. after-tax (false)

Grading Scale

A
90–100%
Outstanding
B
80–89%
Strong
C
70–79%
Passing
D
60–69%
Approaching
F
0–59%
Not Yet

Questions with the highest error rate

The SUMIF syntax question (criteria_range, criteria, sum_range argument order) and the BA II Plus I/Y adjustment question are the most frequently missed. Both require precise procedural knowledge rather than conceptual recognition. Students who score below 70% should return to the Practice Simulator before retaking the quiz.

For Facilitators

🎓 Facilitator Notes

Sequencing, NAF/AOBF alignment, and Heritage-as-Capital discussion anchors

Recommended Learning Sequence

  • 1Study Guide Topics 1–2 (~20 min). Cell references and the four functions. Students should be able to write SUM, AVERAGE, IF, and SUMIF from memory before moving on.
  • 2Formula Match (5–8 min). Reinforces syntax recognition. After completing: ask the SUMIF vs. COUNTIF distinction question verbally.
  • 3Study Guide Topics 3–5 (~20 min). Budget structure, charts, sort/filter. Pause on Topic 5 to demonstrate single-column sort error live on a projected spreadsheet — this is the most important demonstration in the unit.
  • 4Budget Builder (10–12 min). Scenario 4 (SUMIF) and Scenario 6 (sort error) are the most critical. After Scenario 4, have students write one SUMIF formula from scratch.
  • 5Practice Simulator (15–20 min). All six tasks. After completion, run the deficit analysis discussion: which two changes would bring this budget to break even?
  • 6Study Guide Topic 6 + BA II Calculator (~15 min). Conceptual TVM introduction, then the calculator tool. Walk through the car loan example together before independent practice.
  • 7True or False (8–10 min). Exit ticket. Students scoring below 7/10 should review Topics 1–2 and 5 before the quiz.
  • 8Unit Quiz independently. 70% minimum. Retakes should be preceded by specific simulator practice on the formulas the student missed.

Heritage-as-Capital Discussion Anchors

  • 📋
    Introduction — Spreadsheet Fluency as Economic Mobility"The same SUM formula that a Wall Street analyst uses is the one you learn today — no gatekeeping version exists." Ask: what financial decisions in your family or community have been made without a spreadsheet that could have been better with one?
  • 💡
    Topic 3 — Budget Literacy as Wealth Infrastructure"Wealth gaps are explained by savings rates and investment behavior more than by income differences." After the simulator produces a deficit result, ask: what would it take to reach a 20% savings rate with this income? What would have to change?
  • 🏛️
    Topic 6 — The Credential Tool Equity Gap"The BA II Plus costs $35. The credential that requires it costs thousands and years of study. The gap is closed entirely by knowledge." Ask: what other professional tools or skills are accessible to anyone who knows how to use them, regardless of where they grew up?

NAF / AOBF Alignment

Unit 2.3 TopicNAF Academy of Finance Standard
Cell references and formulasFinancial Analysis — spreadsheet modeling and data manipulation
SUM, AVERAGE, IF, COUNTFinancial Analysis — core function library for financial modeling
Personal budget templatePersonal Finance — budgeting, income and expense management
Charts and data visualizationBusiness Communication — financial data presentation
Sort, filter, SUMIF/COUNTIFFinancial Analysis — data organization and conditional analysis
BA II Plus TVMFinance Fundamentals — time value of money, loan and investment calculations
Quick Reference — All Interactive Tools
🔗 Formula Match
6 pairs · Syntax display · SUMIF vs COUNTIF is the key pair
📊 Budget Builder
6 scenarios · Scenarios 4 and 6 are highest impact · Follow-up: write SUMIF from scratch
⚖️ True / False
10 statements · Shuffled · Exit ticket before quiz
🧮 Practice Simulator
6 tasks · Live formula eval · Deficit outcome is intentional · Follow-up: break-even discussion
📟 BA II Plus
Links to bbym-business-calculator.html · Use after Topic 6 · TVM five-variable workflow
✏️ Unit Quiz
20/23 drawn · A–F grading · SUMIF and I/Y are highest error rate