Module 1

Spreadsheet Fundamentals

Every spreadsheet skill you'll ever learn starts with cells, rows, and columns — master the basics and you'll never be the person staring blankly at a blank workbook again.

💡What You'll Build
By the end of this module, you will be able to navigate any spreadsheet with keyboard shortcuts alone, set up clean data entry that prevents errors before they happen, and choose the right number format for any column — skills that every formula, chart, and pivot table in this course depends on.

In 2012, JPMorgan Chase lost $6.2 billion because of a copy-paste error in an Excel spreadsheet

A team of risk analysts at JPMorgan's Chief Investment Office was using a Value at Risk (VaR) model built in Excel. When they updated the model, someone manually copied formulas from one spreadsheet to another — and accidentally divided by a sum instead of an average. The error made the portfolio's risk look half of what it actually was. Traders kept making bets that would have been flagged immediately with accurate numbers. By the time anyone noticed, the losses had ballooned to $6.2 billion.

The "London Whale" scandal, as it became known, was not caused by exotic financial instruments or rogue traders. It was caused by someone who did not understand how their spreadsheet worked.

This is why spreadsheet fundamentals matter. Not because cells and columns are exciting — but because getting them wrong can cost billions.

750M+Excel users worldwide

6.2Blost from one spreadsheet error

88%of spreadsheets contain errors

What is a spreadsheet, really?

Think of a spreadsheet as a giant grid of tiny boxes — like graph paper that can do math. Each box is called a cell. Each cell lives at the intersection of a column (vertical, labeled A, B, C...) and a row (horizontal, labeled 1, 2, 3...).

Spreadsheets are not new — accountants used paper spreadsheets for centuries. But the electronic version changed everything, and understanding this history explains why Excel works the way it does today:

Every cell has an address. Cell B3 means column B, row 3. That is it. If you can find a seat in a movie theater (row G, seat 12), you can find a cell in a spreadsheet.

ConceptWhat it isAnalogy
CellA single box in the gridOne locker in a wall of lockers
RowA horizontal line of cells (1, 2, 3...)A row of seats in a theater
ColumnA vertical line of cells (A, B, C...)A column of lockers stacked top to bottom
WorksheetOne sheet (tab) inside a workbookOne page in a notebook
WorkbookThe entire file containing all sheetsThe whole notebook
🔑The cell reference is everything
Every formula, every chart, every pivot table in Excel traces back to cell references. When you write `=A1+B1`, you are telling Excel: "go to cell A1, grab whatever number is there, go to cell B1, grab that number, and add them together." Master cell references now and everything else in this course becomes dramatically easier. In the next module on Formulas & Functions, you will see how `=SUM(A1:A10)` and `=VLOOKUP(B2, data, 3, FALSE)` are just more sophisticated versions of this same idea.

Navigating without the mouse

Power users almost never touch the mouse for basic navigation. Here are the shortcuts that separate someone who uses Excel from someone who is fast in Excel:

ActionWindowsMac
Move to next cellTab (right) or Enter (down)Same
Jump to the edge of dataCtrl + Arrow keyCmd + Arrow key
Select entire rowShift + SpaceSame
Select entire columnCtrl + SpaceCtrl + Space
Select to the edge of dataCtrl + Shift + ArrowCmd + Shift + Arrow
Go to a specific cellCtrl + G or F5Cmd + G
Insert new row/columnCtrl + Shift + +Cmd + Shift + +
UndoCtrl + ZCmd + Z
SaveCtrl + SCmd + S

Step 1: Click any cell in the middle of a data range

Step 2: Hold Ctrl (or Cmd on Mac) and press the down arrow — you just teleported to the last row of data

Step 3: Now hold Ctrl + Shift and press the up arrow — you just selected the entire column of data in one keystroke

Step 4: Practice this 10 times. It will save you thousands of mouse-scrolls over your career

There Are No Dumb Questions

"What is the difference between a cell's value and its formula?"

What you see in a cell is the value — the result. But behind that value, there might be a formula doing the calculation. Click on any cell and look at the formula bar at the top. If it shows =A1*0.08, that is the formula. The cell just displays the answer. This distinction matters because when you copy a cell, you are copying the formula, not the number you see.

"Do the column letters ever run out?"

They go from A to Z, then AA to AZ, then BA to BZ, all the way to XFD — that is 16,384 columns. Each sheet can also have 1,048,576 rows. That is over 17 billion cells per sheet. You will not run out.

Data entry done right

Most spreadsheet errors do not come from bad formulas — they come from messy data entry. Here are the rules that will save you hours of cleanup later:

One fact per cell. Do not put "John Smith" in one cell. Put "John" in column A and "Smith" in column B. You cannot sort by last name if first and last are combined.

Be consistent. If dates are in MM/DD/YYYY format, keep them all that way. One cell with March 15, 2024 in a column of 03/15/2024 will break sorting and formulas.

No merged cells. They look pretty and break everything. Sorting, filtering, formulas, pivot tables — all of them choke on merged cells.

No blank rows in the middle of data. Excel uses blank rows to detect the edges of a data range. A blank row in row 50 means everything below it becomes invisible to many features.

Messy Data

  • John Smith in one cell
  • Mixed date formats
  • Merged cells for headers
  • Blank rows scattered throughout
  • Numbers stored as text

Clean Data

  • First name and last name in separate columns
  • Consistent MM/DD/YYYY format
  • No merged cells anywhere
  • Continuous data with no gaps
  • Numbers formatted as numbers

<classifychallenge xp="25" title="Which Data Entry Rule Is Broken?" items={["Column A has 'Sarah Johnson' in one cell instead of separate first/last columns","Column D mixes date formats: 01/15/2024, February 3 2024, 2024-03-01","Rows 1-3 are merged into one big cell that says Q1 Sales Report","Row 25 is completely blank with more data in rows 26-50","Column F has amounts like $1,234 stored as text instead of numbers","Column B header says Region but some cells contain full state names and others contain abbreviations"]} options={["One fact per cell","Be consistent","No merged cells","No blank rows"]} hint="Each entry violates exactly one of the four rules. Mixing formats and mixing abbreviation styles both violate consistency. Combined names violate one-fact-per-cell. Text-formatted numbers also violate consistency (format mismatch).">

The data quality pipeline

Before you write a single formula, the quality of your data determines whether that formula produces truth or garbage. Every spreadsheet project follows the same pipeline:

If data entry is messy, formatting is wrong, or validation is missing, every step downstream produces unreliable results. The London Whale loss happened because the first step (data entry via copy-paste) was wrong — and nobody caught it.

Think of it like cooking: if the ingredients are spoiled, no amount of technique will save the dish. Clean data entry is your fresh ingredients. In the Data Analysis module, you will learn data validation rules that catch errors at the source before they propagate.

Formatting: make it readable, not pretty

Formatting is not about making your spreadsheet look like a magazine layout. It is about making data scannable, sortable, and error-proof.

Format typeWhat it doesWhen to use it
NumberDisplays with decimal places (1,234.56)Financial data, measurements
CurrencyAdds $ sign and 2 decimals ($1,234.56)Money amounts
PercentageMultiplies by 100 and adds % (85%)Rates, growth, completion
DateFormats as readable date (01/15/2024)Any date field
TextTreats content as text, even if it looks like a numberZIP codes, phone numbers, IDs
⚠️The ZIP code trap
Type the ZIP code `01234` into an Excel cell. Excel helpfully strips the leading zero and shows `1234`. Now your customer in Schenectady, NY has an invalid ZIP code. The fix: format the column as Text *before* entering data, or prefix with an apostrophe (`'01234`). This is one of the most common Excel mistakes in business.

Excel vs Google Sheets

Most people will encounter both. Here is what actually matters:

FeatureExcelGoogle Sheets
CollaborationRequires OneDrive/SharePoint for real-time co-editingBuilt-in real-time collaboration (its biggest strength)
PerformanceHandles 1M+ rows nativelySlows significantly past 50,000 rows
Macros/VBAFull VBA supportApps Script (JavaScript-based)
OfflineFull offline supportLimited offline mode
Advanced featuresPower Query, Power Pivot, SolverLacks many advanced tools
PriceRequires Microsoft 365 license (~$6-22/mo)Free with a Google account
Best forHeavy data work, financial modeling, enterpriseLight collaboration, quick sharing, startups
🔑They are converging
Excel added real-time co-authoring. Google Sheets keeps adding functions. For 80% of business tasks, either tool works fine. Choose based on what your team already uses. This course teaches concepts that apply to both — we will note when something is Excel-specific.

There Are No Dumb Questions

"I only have Google Sheets. Can I still follow this course?"

Yes. About 90% of what you will learn — formulas, pivot tables, charts, data analysis — works identically in both. We will flag the few features that are Excel-only (VBA macros, Power Query) and show the Google Sheets equivalent when one exists.

"Should I learn keyboard shortcuts for both?"

Learn the shortcuts for whichever tool you use daily. The concepts are identical — only the key combinations differ slightly. Speed comes from muscle memory, and muscle memory comes from daily repetition in one tool.

🔒

Set Up Your First Spreadsheet

50 XP

Create a new spreadsheet (Excel or Google Sheets) and build a simple monthly expense tracker with these specifications: 1. Row 1: Headers — Date, Category, Description, Amount 2. Format the Date column as a date, the Amount column as currency 3. Enter 5 sample expenses (groceries, rent, utilities, coffee, subscription) 4. In cell E1, type "Total" — in E2, type the formula `=SUM(D2:D6)` to sum all amounts 5. Use `Ctrl+Shift+Arrow` to select all your data at once What is the cell reference for the amount of your third expense entry? What formula would you write to calculate the average expense? _Hint: The third expense amount is in cell D4. The average formula is `=AVERAGE(D2:D6)`._

Sign in to earn XP

Back to the London Whale

Remember JPMorgan's $6.2 billion loss? The analysts who built that spreadsheet were not amateurs — they were highly paid risk professionals. But they violated the fundamentals. They copy-pasted formulas without understanding cell references. They did not structure their data in a way that made errors visible. They did not use consistent formatting that would have flagged the division-by-sum mistake.

Every skill in this module — cell references, keyboard navigation, clean data entry, proper formatting — exists to prevent exactly that kind of catastrophe. The fundamentals are not the boring part you rush through to get to the exciting stuff. The fundamentals are the exciting stuff, because they are the difference between a spreadsheet you can trust and one that quietly lies to you.

If those analysts had followed the four data entry rules, used consistent formatting, and structured their data in a table instead of a loose range of copy-pasted cells, the error would have been visible immediately. Six billion dollars visible.

The good news: you now have those fundamentals. Every module from here builds on this foundation.

Next up: You know how to navigate and organize a spreadsheet. But a spreadsheet that just holds data is just a fancy table — a very expensive piece of graph paper. In the next module, you will learn the formulas that turn static data into a calculation engine — starting with SUM, IF, and VLOOKUP, the 15 functions that handle 90% of all business spreadsheet work.

Key takeaways

  • Cell references (like B3) are the foundation — every formula, chart, and feature depends on them
  • Keyboard shortcuts for navigation (Ctrl+Arrow, Ctrl+Shift+Arrow) save massive amounts of time over mouse scrolling
  • Clean data entry prevents errors downstream — one fact per cell, consistent formats, no merged cells, no blank rows
  • Number formatting (currency, percentage, date, text) changes how data displays without changing the underlying value
  • Excel vs Google Sheets: Excel handles larger datasets and has more advanced features; Google Sheets excels at real-time collaboration — both work for most tasks
  • The JPMorgan "London Whale" loss proves that spreadsheet fundamentals are not academic — they are the difference between accurate decisions and billion-dollar mistakes

?

Knowledge Check

1.What does the cell reference 'C7' refer to in a spreadsheet?

2.You type the US ZIP code 01234 into a cell formatted as 'Number'. What happens, and how do you fix it?

3.Which of the following data entry practices is most likely to cause problems with sorting, filtering, and pivot tables?

4.What is the primary advantage of Google Sheets over Excel for team workflows?