O
Octo
O
Octo
CoursesPricingDashboardPrivacyTerms

© 2026 Octo

Excel & Spreadsheets
1Spreadsheet Fundamentals2Formulas & Functions3Data Analysis with Spreadsheets4Pivot Tables5Charts & Visualization6Automation & Macros7Advanced Formulas8Real-World Projects
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.

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...).

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.

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.

✗ Without AI

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

✓ With AI

  • ✓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

⚡

Spot the Data Entry Mistakes

25 XP
A coworker sends you a spreadsheet to analyze. Before you can run any formulas, you need to fix the data. Identify what is wrong with each: 1. Column A header says "Name" and cells contain "Sarah Johnson", "Mike Chen", "Lisa Rodriguez" → ___ 2. Column D has dates: `01/15/2024`, `February 3, 2024`, `2024-03-01` → ___ 3. Rows 1-3 are merged into one big cell that says "Q1 Sales Report" → ___ 4. Row 25 is blank, followed by more data in rows 26-50 → ___ _Hint: Think about the four rules above — one fact per cell, consistency, no merging, no blank rows._

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)`._

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?

Next

Formulas & Functions