How to Use Excel: A Step-by-Step Guide from Basics to Advanced

2026-06-05·Getting Started

Key Takeaways:

  • Start with basic navigation and cell references; they form the foundation for all Excel work.
  • Formulas like SUM and IF can automate calculations; use relative and absolute references ($) to avoid errors.
  • Pivot tables summarize thousands of rows in seconds—no manual sorting needed.
  • VBA macros repeat tasks for you; even simple recording saves hours.

Getting Started with Excel: Your First Steps

When you open Excel, you see a grid of cells organized into columns (A, B, C...) and rows (1, 2, 3...). Each cell has an address, like A1 or D15. Think of it as a giant table where you can store numbers, text, or dates.

Pro tip: Always label your columns. For example, in a budget sheet, put "Date" in A1, "Item" in B1, "Cost" in C1. This makes everything easier later.

Basic Navigation

  • Click a cell to select it.
  • Use arrow keys or Tab to move.
  • Type = to start a formula.
  • Press Enter to confirm.

Example: In cell D2, type =C2*1.08 to add 8% tax. The formula uses C2 (the cost) and multiplies by 1.08. If C2 is 100, D2 shows 108.

Formulas: Your First Superpower

Formulas are what make Excel smart. They start with = and use cell references.

Essential Formulas for Beginners

  • SUM: =SUM(A1:A10) adds all numbers from A1 to A10.
  • AVERAGE: =AVERAGE(B1:B10) gives the mean.
  • IF: =IF(C2>0,"Profit","Loss") checks if C2 is positive.

Real example: I run a small bakery. I track daily sales in column B. To find the week's total, I type =SUM(B2:B8). That saved me from adding numbers manually—and I avoided mistakes.

FormulaWhat It DoesExample
--------------------------------
=SUM(A:A)Adds entire column A=SUM(B2:B10)
=AVERAGE(B2:B10)Finds average=AVERAGE(C2:C10)
=IF(D2>100,"High","Low")Returns text based on condition=IF(E2>0,"Positive","Negative")

Absolute vs Relative References: When you copy a formula, Excel changes cell references (relative). To keep a cell fixed, use $ signs. Example: =B2*$C$1 always multiplies by cell C1, even when copied down.

Pivot Tables: Summarize Data in Seconds

Pivot tables let you turn hundreds of rows into a neat summary. No manual grouping or counting.

How to Create a Pivot Table

1. Select your data (include headers).

2. Go to Insert > PivotTable.

3. Choose where to place it (new worksheet is best).

4. Drag fields to the right areas:

- Rows: categories (e.g., Product)

- Values: numbers to sum (e.g., Sales)

Example: I have 500 rows of sales data with columns: Date, Product, Amount. To see total sales per product, I drag "Product" to Rows and "Amount" to Values. Excel instantly shows me that Coffee made $12,450 and Pastries $8,230.

Pro tip: Right-click any number in a pivot table and choose "Sort" to see highest first. You can also filter by date or product.

VBA Macros: Automate Repetitive Tasks

VBA (Visual Basic for Applications) lets you record actions and replay them. No coding needed to start.

Recording Your First Macro

1. Go to View > Macros > Record Macro.

2. Give it a name (no spaces).

3. Perform actions (e.g., format a table: bold headers, add borders).

4. Click Stop Recording.

5. To replay: View > Macros > View Macros > Run.

Personal story: I used to copy-paste monthly reports into a template—took 30 minutes. I recorded a macro that does it in 2 seconds. Now I just press Ctrl+Shift+R.

Simple VBA Code for Beginners

If you want to edit, press Alt+F11 to open the VBA editor. Here's a simple code that highlights cells with values over 100:

```vba

Sub HighlightHighValues()

Dim cell As Range

For Each cell In Selection

If cell.Value > 100 Then

cell.Interior.Color = RGB(255, 0, 0) ' red

End If

Next cell

End Sub

```

How to use: Select a range, run the macro, and all cells above 100 turn red.

Next Steps

  • Practice with real data (download a free sample from Excel's templates).
  • Learn VLOOKUP or XLOOKUP for data matching.
  • Explore charts: select data, press F11 for a quick chart.

Excel rewards curiosity. Try one new thing each day.

FAQ

Q: Why do my formulas show as text instead of calculating?

A: The cell might be formatted as Text. Select the cell, go to Home > Number dropdown, choose General, then press F2 and Enter to recalculate.

Q: How do I create a drop-down list?

A: Select a cell, go to Data > Data Validation > List. Enter your options separated by commas (e.g., Yes,No,Maybe) or reference a range.

Q: Can I undo a macro?

A: Yes, press Ctrl+Z immediately after running it. But macros can't be undone after you close the file and reopen it. Save a backup before testing macros on important data.