Workbook, Worksheet, Cell, Range

5 min
हिंदी में पढ़ें

What you'll learn

  • Excel's structure, from file down to cell
  • How to read and write range notation
  • The syntax for referencing another sheet

Concept

Excel's structure works like a building:

Workbook (the whole file — Sales2026.xlsx)
 └── Worksheet (one tab — "Jan", "Feb", "Summary")
      └── Cell (one box — B5)
           └── Range (a group of cells — B5:D20)

A cell address is always column first, row second: B5 means column B, row 5. Never the other way round — 5B is invalid.

Range notation:

You write It means
B5 One cell
B5:D20 The rectangle from B5 to D20 (3 columns × 16 rows = 48 cells)
B:B The entire column B
5:5 The entire row 5
B:D Columns B through D, entirely
B5:B5000 Column B, rows 5 to 5000

A colon : means "from … to". A comma , means "and also" — B5,D8,F12 is three separate cells (a non-contiguous range, selected by holding Ctrl).

Referencing another sheet — sheet name, then !:

=Jan!B5

If the sheet name contains a space, it needs single quotes:

='Jan Sales'!B5

Referencing another file — the filename goes in square brackets:

=[Sales2026.xlsx]Jan!B5

This works, but avoid it. Rename or move the file and the link breaks, giving you #REF! errors. It's far better to bring both datasets into one file using Power Query (covered in Track 2).

[SS-3: formula bar showing =Jan!B5 with the Jan tab highlighted below]

Excel's limits (worth knowing, because people do hit them):

  • Rows: 10,48,576
  • Columns: 16,384 (A to XFD)
  • Sheets per workbook: limited only by memory

If your data exceeds 10 lakh rows, Excel is the wrong tool — you need Power Pivot or a database.

Naming convention: Don't put spaces in sheet names. Use Jan_Sales instead of Jan Sales. Formulas get shorter, you skip the quotes, and you avoid headaches later in Power Query and VBA.

Exercises

easyHow many cells are in `B3:E10`? Count it, then verify in Excel by selecting the range and reading Count on the status bar (you'll need to fill the cells first).
4 columns (B, C, D, E) × 8 rows (3 to 10) = **32 cells**.
mediumCreate two sheets, `Data` and `Summary`. Put 500 in `Data!B2`. In `Summary!A1`, write a formula that pulls that value across.
`=Data!B2`
hardRename the `Data` sheet to `Raw Data` (with a space). What does your formula look like now? What did Excel change on its own?
Excel rewrites it as `='Raw Data'!B2` — it adds the quotes itself. Spaces do work, but formulas get longer and more typo-prone.

Quiz

How many cells in `A1:C3`?
9
Syntax to reference D4 on the `Summary` sheet?
=Summary!D4
Maximum rows in Excel?
10,48,576
Previous lessonNext lesson
Workbook, Worksheet, Cell, Range · Foundations | ExcelWalaa