من أنا
المقالات
الوظائف
التواصل معي

The interface and building a sound table

Most Excel problems are not in the functions but in a table that was built wrong from the start. This lesson sets the foundation before we write a single formula.

Chapter 1 · Lesson 1 of 59 min readBeginner level

Excel is a grid of cells, each with an address. Everything you will learn later — functions, lookups, pivot tables — rests on one thing: is your data laid out in a way the program understands?

1 The vocabulary you need

Anatomy of the Excel window — follow the four parts

C2 fx=B2*0.15
A B C
1 Invoice Amount Tax
2 INV-001 10,000 1,500
3 INV-002 4,000 600
JanuaryFebruarySummary
1The Name Box: tells you the address of the cell you are on
2The formula bar: shows what was actually typed, not what is displayed
3The active cell: displays the result 1,500, not the formula
4Worksheets: pages inside a single workbook

Cell C2 displays 1,500, but the formula bar reveals it is the result of =B2*0.15 — and that difference is the first thing to check in any file.

TermWhat it isExample
WorkbookThe file itselftrial-balance-2026.xlsx
WorksheetA page inside the fileJanuary · February · Summary
CellThe intersection of a column and a rowB4
ReferenceThe address of a cell or a rangeB4 · B4:B20
Formula barShows what was actually typed into the cell‎=B4*0.15‎

The cell shows a result; the formula bar shows the truth

You may see 1,500 in a cell when it is in fact a formula, a piece of text, or a value typed in by hand. Before you trust a number in any file, click its cell and look at the formula bar.

2 The four data types

Sheet1 — watch the automatic alignment: numbers to the right, text to the left
ABC
1ItemValueType
2Sales250000Number
3Date2026-01-31Date (a number underneath)
4CustomerAl Waha CompanyText
5Approved?TRUELogical
6Tax=B2*0.15Formula

Numbers stored as text: enemy number one

If you see numbers aligned to the left, or a small green triangle in the corner of the cell, they are text rather than numbers — and SUM will ignore them and hand you a zero without complaint. This happens constantly with data exported from accounting systems.

3 The rules for a sound table

1
One header row

No merged or doubled headers

2
One record per row

A single transaction, no more

3
One field per column

And never mix two types in one column

4
No blank rows

A gap breaks the range

5
No merged cells

They ruin sorting and filtering

6
Raw data kept separate

One sheet for data, another for the report

Six rules that save you hours of fixing files later

A bad table and a sound one

The bad one: a single column called “Amount” holding “SAR 1,200”, “one thousand two hundred” and “1200”, a merged row above the headers, and two blank rows in the middle to separate the months.

The sound one: separate columns — Date · Entry number · Account · Cost centre · Debit · Credit — one entry per row, with January and February in the same table and a “Month” column distinguishing them.

The result: the sound table becomes a pivot report in three clicks; the bad one has to be re-entered.

4 Shortcuts worth memorising

Ctrl + ↓Jump to the last filled cell in the column
Ctrl + Shift + ↓Select the column down to the end of the data
Ctrl + TConvert the range into a Table
Alt + =Insert the SUM function automatically
Ctrl + 1Open the Format Cells dialog
F2Edit the cell and see its ranges colour-coded

Always start with Ctrl + T

Turning your data into a “Table” gives it a name, expands the range automatically when you add rows, and lets your formulas read [@Amount] instead of D2. That single habit prevents most “the range didn’t include the new rows” errors.

Lesson summary

  • A workbook is a file, a worksheet is a page, a cell is an address — and the reference is Excel’s language.
  • The cell shows a result; the formula bar shows what was actually typed.
  • Numbers stored as text break your sums silently.
  • One header row, one record per row, no gaps and no merging.
  • Keep the raw data separate from the report sheet.

5 Test your understanding

Three quick questions

Pick the answer you believe is correct and you will see the result immediately.

1. A column contains numbers but its total shows zero. The most likely cause:

2. Why do we avoid merged cells in a data table?

3. What is the benefit of converting a range into a Table with Ctrl + T?

Sources and review: the concepts and command names follow the official documentation for Microsoft Excel (Microsoft 365 and Excel 2019 or later). Command locations may differ slightly between versions and between the Arabic and English interfaces. The data in the examples is illustrative. Last reviewed: September 2026.