Unit 2.3 Grade 9 · Quarter 2 · Digital Literacy and Productivity

Spreadsheet
Fundamentals

The financial professional's most essential daily tool — from cell A1

Cell references and basic formulas SUM, AVERAGE, IF, and COUNT Building a personal budget template Charts and data visualization Sorting, filtering, and analysis Introduction to the BA II Plus
6Core Topics
22Glossary Terms
3Games
1Practice Sim

The Language of Financial Work

Every financial professional — accountant, analyst, portfolio manager, budget officer, small business owner — works in spreadsheets. Every day. The spreadsheet is where financial data lives, where budgets are built, where projections are tested, where patterns emerge. It is not supplementary software. It is the primary workspace of business and finance.

Unit 2.3 does not teach you how to use a spreadsheet. It teaches you how to think in a spreadsheet — to see a financial problem and immediately know which formula applies, which structure will make the data readable, and which chart will communicate the insight. That shift, from user to thinker, is what separates a student who took a spreadsheet class from a professional who builds financial models.

🏛️ Heritage as Capital

Spreadsheet fluency is one of the most direct pathways to economic mobility available to any student — regardless of background, network, or family wealth. The same SUM formula that a Wall Street analyst uses is the one you will learn today. There is no gatekeeping version. No credential required to access it. The AOBF Academy teaches it in Grade 9 because early fluency compounds — four years of spreadsheet practice produce a senior who thinks in financial models, not just formulas.

Cell References and Basic Formulas

Every cell in a spreadsheet has an address — a column letter and a row number. Cell B3 is column B, row 3. Every formula in a spreadsheet refers to cells by address. This is the fundamental principle: formulas reference cells, not values. When the value in a cell changes, every formula that references it updates automatically.

Cell Address
The unique identifier of a cell — column letter followed by row number. B3 = column B, row 3. C12 = column C, row 12. All formulas are built from cell addresses.
Relative Reference
A cell reference that adjusts automatically when a formula is copied to a new location. B3 in a formula becomes B4 when copied one row down. The default reference type — most formulas use relative references.
Absolute Reference
A cell reference locked with dollar signs ($B$3) that does NOT adjust when the formula is copied. Used when a formula must always refer to the same cell — like a tax rate or a fixed monthly cost stored in one place.
Formula Bar
The input area above the spreadsheet grid that shows the actual formula in the selected cell. When a cell displays "1,250" the formula bar might show "=SUM(B3:B12)" — the formula that produced that result.
Basic Arithmetic Formulas
=B3+C3
Adds the values in B3 and C3

=B3-C3
Subtracts C3 from B3 (income minus expense = net)

=B3*C3
Multiplies B3 by C3 (quantity × price = total)

=B3/C3
Divides B3 by C3 (total ÷ months = monthly average)
ABCD
1ItemMonthly CostAnnual Cost% of Budget
2Rent850=B2*12=C2/$C$6
3Food300=B3*12=C3/$C$6
4Transportation120=B4*12=C4/$C$6
5Phone65=B5*12=C5/$C$6
6TOTAL=SUM(B2:B5)=SUM(C2:C5)100%

Notice column D: =$C$6 uses an absolute reference because all four % formulas divide by the same total in C6. If relative, copying the formula would move the denominator — breaking each calculation.

💡

The golden rule: never type a number into a formula when you can reference a cell instead. =B2*12 is better than =B2*12 only if 12 is always 12. But if that 12 is "months per year" and you might someday want to model a 6-month period, put 12 in its own cell and reference it. A formula that references cells is a model. A formula with hardcoded numbers is a calculation that cannot be updated.

SUM, AVERAGE, IF, and COUNT

Functions are built-in formulas that perform specific calculations on a range of cells. You will use SUM, AVERAGE, IF, and COUNT in almost every financial spreadsheet you build for the rest of your career. Learn them cold.

SUM — Add a range of cells
=SUM(range)
=SUM(B2:B12)
Adds all values in cells B2 through B12. Use for totals: total income, total expenses, total units sold.
AVERAGE — Mean value of a range
=AVERAGE(range)
=AVERAGE(B2:B12)
Calculates the arithmetic mean of B2 through B12. Use for: average monthly spending, average grade, average sales per day.
IF — Conditional logic
=IF(logical_test, value_if_true, value_if_false)
=IF(B3>500, "Over Budget", "On Track")
If the value in B3 is greater than 500, display "Over Budget" — otherwise display "On Track". Use for: budget alerts, pass/fail thresholds, conditional categories.
COUNT / COUNTA — Count cells
=COUNT(range)   =COUNTA(range)
=COUNT(B2:B12)   =COUNTA(A2:A12)
COUNT counts cells containing numbers. COUNTA counts cells containing any value (numbers OR text). Use for: number of transactions, number of budget line items, number of students in a class.
ABC
1MonthSpendingStatus
2January420=IF(B2>400,"Over","OK")
3February380=IF(B3>400,"Over","OK")
4March510=IF(B4>400,"Over","OK")
5April395=IF(B5>400,"Over","OK")
7Total=SUM(B2:B5)
8Average=AVERAGE(B2:B5)
9Months over $400=COUNTIF(C2:C5,"Over")
📊

COUNTIF is COUNT + IF combined — it counts cells that meet a condition: =COUNTIF(C2:C5,"Over") counts how many months had "Over" status. You will use COUNTIF constantly in financial analysis: how many transactions exceeded a threshold, how many students passed, how many line items are over budget.

Building a Personal Budget Template

A budget is not a plan to spend less money. It is a decision about where your money goes before it arrives. A spreadsheet budget makes that decision visible, trackable, and adjustable. Every financial literacy framework — from Dave Ramsey to the 50/30/20 rule — is built on the same foundation: knowing your income, categorizing your expenses, and measuring the gap.

📋 Standard Personal Budget Structure

Section 1 — Income: All sources (job, allowance, side income). Use SUM for total.
Section 2 — Fixed Expenses: Costs that do not change monthly (rent, phone, insurance). Use SUM.
Section 3 — Variable Expenses: Costs that change (food, transportation, entertainment). Use SUM + AVERAGE for tracking.
Section 4 — Summary: Total Income − Total Expenses = Net (surplus or deficit). Use IF to flag deficit: =IF(D20<0,"DEFICIT","SURPLUS")
Section 5 — Savings Rate: Savings ÷ Income = %. Professional target: 20% minimum.

Fixed Expense
A cost that remains constant each month regardless of behavior — rent, loan payments, subscription services, insurance premiums. Fixed expenses are predictable and appear on the budget as exact amounts.
Variable Expense
A cost that changes month to month based on choices and behavior — food, entertainment, clothing, transportation fuel. Variable expenses require averaging to budget accurately; actual spending must be tracked and compared to the budget target.
Net Income
Total income minus total expenses. A positive net income means a budget surplus — money available for saving or investing. A negative net income means a deficit — spending exceeds income, which is unsustainable and must be addressed.
50/30/20 Rule
A budgeting guideline: 50% of after-tax income to needs (housing, food, transportation), 30% to wants (entertainment, dining out), 20% to savings and debt repayment. A starting framework — not a rigid rule, but a useful benchmark for evaluating a budget.
💡 Heritage as Capital — Budget Literacy as Wealth Infrastructure

Research consistently shows that wealth gaps between demographic groups are not primarily explained by income differences — they are explained by differences in savings rates and investment behavior. Families without budget habits spend preventably: on fees, interest, and impulse purchases that drain potential wealth. A student who builds a budget habit at 15 — who knows their numbers, tracks their spending, and protects their savings rate — has an asset that no market downturn can take away. Budget literacy is wealth infrastructure. This unit builds it from scratch.

Simple Charts and Data Visualization

A chart communicates what a table cannot: pattern, trend, and proportion at a glance. A column of monthly expenses shows 12 numbers. A line chart of those numbers shows whether spending is rising, falling, or stable. The right chart for the right data is a professional competency — choosing the wrong chart type obscures the insight you are trying to communicate.

Chart TypeBest Used ForFinance Example
Bar / ColumnComparing values across categoriesMonthly expenses by category; revenue by product line
LineShowing change over time (trends)Monthly spending trend; savings balance growth over 12 months
PieShowing parts of a whole (proportions)Budget breakdown by category (% of total)
Stacked BarParts of a whole over time or across groupsMonthly spending stacked by category across 6 months
ScatterRelationship between two variablesHours worked vs. income earned; age vs. savings rate
✅ Chart Best Practices

Always include: A descriptive title. Labeled axes (what the axis measures AND the unit). A legend if more than one data series is shown.
Never: Use a 3D chart — they distort proportions and make accurate reading impossible. Use a pie chart with more than 5–6 slices. Choose a chart type because it looks interesting rather than because it serves the data.
The test: can someone understand the key takeaway of this chart in 5 seconds without reading the table it came from? If not, revise.

Sorting, Filtering, and Basic Analysis

Raw data is not information. Organized data is information. Sorting and filtering are the tools that convert a raw transaction list or dataset into something readable and analyzable. A financial professional who cannot sort and filter a dataset cannot extract the insights that data contains — no matter how sophisticated their other skills.

Sort
Reorders all rows in a dataset based on the values in a selected column — ascending (A–Z, 0–9) or descending (Z–A, 9–0). Use: find the largest expenses, rank items by value, put dates in chronological order. Critical rule: always sort the entire dataset, not just one column — or rows become misaligned.
Filter
Temporarily hides rows that do not meet a specified condition, showing only the rows that match. Use: show only expenses over $100, show only transactions in a specific month, show only items in a specific category. Filtered data can be analyzed and totaled independently.
COUNTIF / SUMIF
Conditional count and sum — count or sum only the cells that meet a condition. =SUMIF(A2:A20,"Food",B2:B20) sums all values in column B where the corresponding cell in column A says "Food." Essential for category-level analysis without manual filtering.
Freeze Panes
A spreadsheet feature that locks header rows or columns in place while scrolling through a large dataset. When analyzing 500 rows of transaction data, freeze row 1 (the headers) so column labels remain visible. Without freeze panes, large datasets become unreadable.
SUMIF — Sum cells that meet a condition
=SUMIF(range, criteria, sum_range)
=SUMIF(A2:A20, "Food", B2:B20)
Looks at A2:A20 for cells that say "Food" — when found, adds the corresponding value from B2:B20. Result: total food spending without filtering the entire sheet.

Introduction to the BA II Plus Calculator

The BA II Plus is the required calculator for the Chartered Financial Analyst (CFA) exam, the CFP certification exam, and many other finance certifications. It is also the standard tool for business finance courses throughout college. Every AOBF student who masters the BA II Plus in high school enters college finance courses with a significant advantage.

The BA II Plus handles time value of money (TVM) calculations that spreadsheets can do but that professionals prefer to compute quickly by hand: present value, future value, loan payments, interest rates, and amortization. These are the core calculations of personal finance, corporate finance, and investment analysis.

BA II Plus KeyWhat It DoesFinance Application
NNumber of periodsLoan term in months, years of investment, number of payments
I/YInterest rate per periodAnnual interest rate ÷ payment frequency (12 for monthly)
PVPresent ValueCurrent value of a loan or investment (loan amount today)
PMTPaymentRegular periodic payment amount (monthly loan payment)
FVFuture ValueValue of an investment at the end of N periods
CPTComputeAfter entering 4 of the 5 TVM variables, CPT + any key calculates the missing one
📟 BA II Plus TVM Example — Monthly Car Loan Payment

Problem: $12,000 loan at 6% annual interest, 48-month term. What is the monthly payment?

Keystrokes:
48 → N (48 months)
6 ÷ 12 → I/Y (0.5% monthly rate)
12000 → PV (loan amount)
0 → FV (loan is fully paid off)
CPT → PMTResult: $281.85/month

The BA II Calculator on the bbyouths.org platform replicates this functionality — use it to practice all TVM problems in this unit.

💡 Heritage as Capital — The Credential Tool Equity Gap

The BA II Plus costs approximately $35. The CFA exam that requires it costs thousands of dollars and requires years of study. The gap between the tool and the credential is closed entirely by knowledge — by knowing how to use the calculator before you walk into the exam. AOBF students who master the BA II Plus in Grade 9 have four years of practice by the time that knowledge matters most. That is exactly the kind of compounding advantage the Academy is designed to create.

Unit Summary

What You Should Know Cold

Cell References
B3 = relative (moves when copied). $B$3 = absolute (stays fixed). Formulas reference cells — never hardcode a number you might change.
Four Functions
SUM = total. AVERAGE = mean. IF = conditional logic. COUNT/COUNTA = count cells. SUMIF and COUNTIF add conditional power to SUM and COUNT.
Budget Structure
Income − Fixed − Variable = Net. IF flags deficit. Savings rate = savings ÷ income. 50/30/20 rule as benchmark. Fixed vs. variable is the key expense distinction.
Chart Selection
Bar = compare categories. Line = show trends over time. Pie = parts of a whole. Always: title, labeled axes, legend. Never: 3D charts.
Sort and Filter
Sort = reorder rows. Filter = show only matching rows. SUMIF/COUNTIF = conditional math without filtering. Always sort entire dataset — never one column.
BA II Plus TVM
N, I/Y, PV, PMT, FV — enter 4, compute the 5th. I/Y = annual rate ÷ periods/year. Required for CFA, CFP, college finance courses.

Key Terms & Definitions

A
Absolute Reference
A cell reference locked with dollar signs ($A$1) that does not change when a formula is copied to another cell. Use absolute references when a formula must always point to the same cell — such as a tax rate, a fixed budget target, or a total used as a denominator.
=B2/$B$10 — divides B2 by the total in B10; $B$10 stays fixed when the formula is copied down
AVERAGE
A spreadsheet function that calculates the arithmetic mean of a range of cells — adds all values and divides by the count. Used for: average monthly spending, average transaction value, average grade across assignments.
=AVERAGE(B2:B13) — calculates the average of 12 monthly values in B2 through B13
B
BA II Plus
Texas Instruments financial calculator — the required tool for the CFA exam, CFP certification, and standard in college-level finance courses. Performs time value of money calculations (N, I/Y, PV, PMT, FV) and other financial computations that spreadsheets can replicate but which professionals frequently compute by hand in exam and fieldwork contexts.
Budget
A financial plan that assigns income to specific expense and savings categories before spending occurs. A budget is not a restriction — it is a decision made in advance about where money goes. Spreadsheet budgets are dynamic: when one value changes, all totals, ratios, and alerts update automatically.
C
Cell
The fundamental unit of a spreadsheet — the intersection of a column and a row, identified by its address (column letter + row number). Every value, label, and formula in a spreadsheet lives in a cell.
B4 = column B, row 4
Cell Address
The unique identifier of a cell: column letter followed by row number. All formulas reference cells by address. When a cell value changes, every formula referencing that address updates automatically.
Chart
A visual representation of spreadsheet data. Charts communicate pattern, trend, and proportion at a glance — information a table cannot convey efficiently. The right chart type depends on what you are communicating: comparison (bar/column), trend over time (line), proportion (pie).
COUNT / COUNTA
Spreadsheet functions that count cells. COUNT counts cells containing numbers only. COUNTA counts cells containing any non-empty value — numbers or text. Use COUNT for numerical datasets; COUNTA when your data includes text labels.
=COUNTA(A2:A50) — counts how many rows have any entry in column A
COUNTIF
A conditional count function — counts only the cells in a range that meet a specified condition. More powerful than COUNT for financial analysis: count only transactions above a threshold, count only items in a specific category, count only months with a deficit.
=COUNTIF(C2:C13,"Over") — counts how many cells in C2:C13 contain the word "Over"
F
Filter
A spreadsheet tool that temporarily hides rows not meeting a specified condition — showing only the rows that match. Filtered data can be analyzed independently. Filters do not delete rows — they hide them; turning off the filter restores all data.
Fixed Expense
A budget cost that remains constant month to month regardless of behavior — rent, loan payments, insurance premiums, subscription services. Fixed expenses are predictable and appear on the budget as exact amounts. Distinguished from variable expenses, which fluctuate with choices.
Formula
A calculation entered in a spreadsheet cell that begins with an equals sign (=). Formulas can include arithmetic operators (+, -, *, /), cell references (B3), and functions (SUM, IF). When a referenced cell changes, the formula result updates automatically.
=B3+B4+B5 or =SUM(B3:B5) — both sum three cells
Formula Bar
The input area above the spreadsheet grid showing the actual formula or value in the selected cell. When a cell displays "1,450" the formula bar might show "=SUM(B3:B14)" — revealing the calculation behind the displayed result.
Freeze Panes
A spreadsheet feature that locks selected rows or columns in place during scrolling. Freeze row 1 (headers) when working with large datasets so column labels remain visible regardless of scroll position. Available in both Google Sheets (View menu) and Excel (View tab).
Function
A built-in spreadsheet formula that performs a specific calculation — SUM, AVERAGE, IF, COUNT, SUMIF, COUNTIF, and hundreds of others. Functions take arguments (inputs) and return a result. The four core finance functions: SUM, AVERAGE, IF, COUNT.
Future Value (FV)
The value of a current investment or savings amount at a future point in time, accounting for compound interest. One of the five time value of money variables on the BA II Plus. FV answers: "If I invest $500/month for 10 years at 7% interest, how much will I have?"
I
IF
A conditional logic function that tests a condition and returns one value if true and another if false. Syntax: =IF(test, value_if_true, value_if_false). Fundamental to financial spreadsheets: flag deficits, categorize spending, mark thresholds, trigger alerts.
=IF(B3>400,"Over Budget","OK") — shows "Over Budget" if B3 exceeds 400
N
Net Income (Budget)
Total income minus total expenses in a personal or business budget. A positive net income is a surplus — available for saving or investing. A negative net income is a deficit — spending exceeds income, requiring either increased income or reduced expenses to restore balance.
P
Present Value (PV)
The current value of a future amount of money, discounted for the time value of money. On the BA II Plus, PV is used for loan calculations (the loan amount today) and investment analysis (what a future cash flow is worth today). Core concept in all finance.
R
Range
A group of contiguous cells referenced in a formula — written as FirstCell:LastCell. B2:B12 is the range from B2 to B12 (11 cells). Ranges are the inputs to SUM, AVERAGE, COUNT, and most other functions. A well-structured spreadsheet organizes data so ranges are contiguous and logically grouped.
Relative Reference
A standard cell reference that adjusts automatically when a formula is copied. B3 in a formula in row 3 becomes B4 when copied to row 4. The default reference type in all spreadsheet applications. Use relative references when the same formula applies to each row or column with its own adjacent data.
S
Sort
Reorders all rows in a dataset based on values in a selected column — ascending or descending. Critical rule: always sort the entire dataset (all columns selected), never a single column in isolation. Sorting one column while others stay in place breaks row alignment and corrupts the data.
SUM
The most frequently used spreadsheet function — adds all values in a specified range. Syntax: =SUM(range). Used for every total in financial work: total income, total expenses, total units, total sales. More reliable than chained addition formulas for large datasets.
=SUM(B2:B13) — adds all 12 monthly values in B2 through B13
SUMIF
A conditional sum function — sums only the cells in a range that meet a specified condition. Syntax: =SUMIF(criteria_range, criteria, sum_range). Essential for category-level budget analysis without manual filtering.
=SUMIF(A2:A50,"Food",B2:B50) — sums all spending in B where A says "Food"
T
Time Value of Money (TVM)
The financial principle that a dollar available today is worth more than a dollar available in the future — because today's dollar can be invested and earn interest. TVM is the foundation of loan calculations, investment valuation, retirement planning, and corporate finance. The BA II Plus is designed primarily for TVM calculations.
V
Variable Expense
A budget cost that changes month to month based on behavior and choices — food, transportation, entertainment, clothing. Variable expenses require tracking actual spending against budget targets and using AVERAGE to estimate future amounts based on past patterns.

Test Your Knowledge

🔗
Formula Match
Match each spreadsheet situation to the correct function. Six pairs.
📊
Budget Builder
Six spreadsheet scenarios — choose the right formula or chart type.
⚖️
True or False
Spreadsheet facts vs. myths. Ten statements.
0matched
6 remaining

Select a situation on the left, then the matching function on the right.

Situation
Best Function

Formula Practice

A live spreadsheet with pre-loaded budget data. Practice SUM, AVERAGE, IF, and SUMIF directly in the cells. Click any cell to select it and type a formula.

Cell
A1 fx
Practice Tasks — Complete All 6
1In cell B9, enter =SUM(B2:B8) to total all monthly income sources.
2In cell D9, enter =SUM(D2:D8) to total all expenses.
3In cell E9, enter =B9-D9 to calculate Net Income (Income minus Expenses).
4In cell F2, enter =IF(D2>200,"Review","OK") to flag expenses over $200.
5In cell B11, enter =AVERAGE(D2:D8) to find the average monthly expense.
6In cell B12, enter =E9/B9 to calculate your Savings Rate (Net ÷ Income).
0 of 6 tasks complete
BA II Plus Calculator

For time value of money problems — loan payments, present and future value, investment growth — use the full BA II Plus Calculator on the bbyouths.org platform. Open BA II Calculator →