
Opening Excel for the first time can feel overwhelming. The grid of blank cells, the ribbon packed with buttons, the menus hiding dozens of options — it's a lot. But here's the good news: you only need to understand a small handful of concepts to build something genuinely useful on day one. This guide walks you through everything from launching Excel to saving a finished, formula-powered spreadsheet. No prior experience required.
If you want the broader picture before diving in, the Excel for Beginners: Complete Getting Started Guide 2025 is a great companion resource. For now, let's focus on building your very first spreadsheet from scratch.
Before touching a cell, take sixty seconds to orient yourself. Excel's workspace has a few key areas:
Launch Excel and choose Blank Workbook from the start screen. You now have an empty workbook with one worksheet. A workbook is the file (saved as .xlsx); a worksheet is an individual sheet inside it. Think of a workbook as a binder and each worksheet as a page inside that binder.
The single biggest mistake beginners make is jumping straight into typing without any structure. Spend two minutes answering these questions:
For this walkthrough, we'll build a simple monthly expense tracker. It's practical, teaches every core skill, and can be extended into something like the Excel Budget Template: Track Personal or Business Finances once you're comfortable.
Click cell A1 and type the word Date, then press Tab to move to B1. Continue across the row:
| A1 | B1 | C1 | D1 | E1 |
|---|---|---|---|---|
| Date | Description | Category | Amount | Notes |
Press Enter after the last header. Now select the entire header row (click the row number 1 on the left to highlight the whole row), go to Home → Font, click Bold, and optionally fill it with a light color using the Fill Color bucket. This visual separation between headers and data is a habit worth building from day one.
Starting in row 2, type a few rows of realistic expense data. Here's an example set:
| Date | Description | Category | Amount | Notes |
|---|---|---|---|---|
| 01/05/2025 | Grocery Run | Food | 84.50 | |
| 03/05/2025 | Monthly Internet | Utilities | 59.99 | Auto-pay |
| 05/05/2025 | Coffee Shop | Food | 12.40 | |
| 07/05/2025 | Bus Pass | Transport | 45.00 | |
| 10/05/2025 | Electricity Bill | Utilities | 112.30 |
Tips while entering data:
Select cells D2:D6 (click D2, hold Shift, click D6). On the Home tab, click the dropdown in the Number group that says "General" and choose Currency. Your numbers now display with a currency symbol and two decimal places.
Select A2:A6, right-click, choose Format Cells, select Date, and pick a display format you prefer. The underlying value doesn't change — only how it looks.
If text is cut off, hover over the line between two column letters at the top until the cursor becomes a double arrow, then double-click. Excel auto-fits the column to its widest content. You can also select all columns and do this at once.
This is where a spreadsheet transforms from a glorified table into a living tool. Understanding Excel Cell References: Relative vs Absolute will make everything below click faster.
Click cell D8. Type a label in C8: Total. Now in D8, type:
=SUM(D2:D6)
Press Enter. Excel adds up every number in D2 through D6 and displays the result. The SUM function is the most-used function in Excel. Its syntax is straightforward:
=SUM(number1, [number2], ...)
=SUM(D2:D6) ' adds a continuous range
=SUM(D2, D4, D6) ' adds specific cells
In C9 type Average, and in D9 type:
=AVERAGE(D2:D6)
This gives you the mean transaction amount across your five entries. For more statistical functions like MEDIAN and STDEV, see Statistical Functions: AVERAGE, MEDIAN, STDEV.
Now let's answer a real question: how much did you spend on Food? In G1 type Category, in H1 type Subtotal. In G2 type Food, and in H2 type:
=SUMIF(C2:C6, G2, D2:D6)
SUMIF checks each cell in C2:C6; when it matches the value in G2 ("Food"), it adds the corresponding cell from D2:D6. The result is 96.90 (84.50 + 12.40). You can add rows for Utilities and Transport in G3 and G4, then copy the formula down. To go deeper on conditional summing, the SUMIF and SUMIFS: Conditional Summing in Excel guide covers multi-condition scenarios.
In F1, type Flag. In F2, type:
=IF(D2>80, "Review", "")
This says: if the amount in D2 is greater than 80, show the word "Review"; otherwise show nothing. Copy F2 down to F6 by clicking F2, then dragging the small green square at the bottom-right corner of the cell down to F6. The IF Function: Logical Tests and Nested IFs article shows how to stack multiple conditions when you're ready.
Select D2:D6, go to Home → Conditional Formatting → Highlight Cell Rules → Greater Than, enter 80, and choose a red fill. Now any expense above $80 is instantly visible without scanning the column manually. This is a tiny taste of what's possible — Conditional Formatting: Visualize Data with Colors explores it fully.
Never lose your work. Use Ctrl + S (Windows) or Cmd + S (Mac). The first time you save:
Going forward, press Ctrl + S every few minutes. If Excel crashes (it happens), you lose only what's unsaved. Enable AutoSave in the top-left corner if you're using OneDrive or SharePoint — it saves every few seconds automatically.
Even as a beginner, a few shortcuts will save you enormous time:
For a full cheat sheet, Excel Keyboard Shortcuts: 50 Essential Shortcuts is worth bookmarking.
Your expense tracker is a working spreadsheet. From here, the logical next steps are:
A workbook is the entire Excel file (the .xlsx document you save and share). A worksheet — also called a sheet — is a single tab inside that file. One workbook can contain many worksheets, which is useful for organizing related data, such as one sheet per month in an annual budget.
Excel displays error codes when something is wrong. The most common ones are: #DIV/0! (you're dividing by zero or an empty cell), #VALUE! (a formula expects a number but found text), #REF! (a cell reference points to a deleted row or column), and #NAME? (Excel doesn't recognize a function name — check for typos). Click the cell with the error, read the formula bar carefully, and check that all referenced cells contain the right type of data.
Yes, and it's easy. Select your data range including headers, press Ctrl + T, confirm the range, and click OK. Excel converts your range into a structured Table. Tables automatically expand when you add rows, apply consistent formatting, and make formulas more readable. They also play nicely with PivotTables and Power Query, so starting with a Table is almost always the right choice.
Go to Review → Protect Sheet. By default, all cells are "locked" but protection isn't active until you enable it here. You can choose a password and specify what users are allowed to do (e.g., select cells but not edit them). To allow editing in specific cells (like data-entry areas) while protecting formula cells, first select those input cells, press Ctrl + 1 to open Format Cells, go to the Protection tab, and uncheck Locked before enabling sheet protection.
Learn how relative, absolute, and mixed cell references work in Excel, when to use the dollar sign ($), and how to avoid the most common formula errors.
A practical beginner's guide to creating your first Excel spreadsheet, covering the interface, data entry, essential formulas, formatting, and saving your work.
Boost your Excel productivity with 50 essential keyboard shortcuts covering navigation, selection, formatting, and formulas for beginners to intermediate users.