Microsoft Excel 2024 Comprehensive Course — Beginner to Intermediate
X
Excel 2024 Microsoft 365
📗 34 Modules Foundations Data Entry Formatting Formulas Functions Charts Pivot Tables Data Analysis Protection Automation

✏️ Module 4: Entering & Editing Values in Cells

The cell is the fundamental building block of every spreadsheet. Before you can sort, format, calculate, or chart anything, you need to enter data correctly. This module covers every method for entering text, numbers, dates, and times — and all the techniques for editing, correcting, and filling data efficiently. Mastering these basics means you will never waste time on repetitive data entry or fight with Excel over data types.

4.1 The Four Types of Cell Data

Excel treats data differently depending on what it detects when you type. Understanding these types prevents the most common spreadsheet errors — particularly numbers being stored as text and calculations failing silently.

Type What It Is Default Alignment Examples
Text Any entry Excel cannot interpret as a number, date, or formula. Cannot be used in mathematical calculations. Left-aligned Names, addresses, headings, product codes, descriptions
Numbers Numeric values that can be used in calculations. Includes integers, decimals, negative numbers, percentages, and currency. Right-aligned 1500, 3.14, -250, 15%, R1 200.00
Dates & Times Stored internally as numbers (days since 1 January 1900). Displayed in a date or time format. Can be used in calculations. Right-aligned 15/01/2025, 01 Jan 2025, 08:30, 14:45:00
Formulas Instructions that begin with = and calculate a result from values, cell references, or functions. The cell displays the result, not the formula itself. Depends on result type =A1+B1, =SUM(A1:A10), =IF(B2>0,"Yes","No")

How to Tell Which Type a Cell Contains

  • Alignment: Left = text, Right = number or date
  • Green triangle: a small green triangle in the top-left corner of a cell means Excel suspects the data type is wrong — e.g., a number stored as text
  • Formula bar: click the cell and look at the formula bar — it shows the raw content. If a date shows as a number (e.g., 45672), the cell format is set to General or Number instead of Date.

4.2 Entering Data Into Cells

The Basic Entry Process

  1. Click the cell where you want to enter data — a green border appears around the active cell
  2. Type your data — the content appears in the cell and in the Formula Bar simultaneously
  3. Confirm the entry by pressing one of the following:
KeyWhat Happens After Confirming
EnterConfirms entry and moves cursor down one row (default direction — see Module 2 to change)
TabConfirms entry and moves cursor right one column — ideal for entering data across a row
Shift+EnterConfirms entry and moves cursor up
Shift+TabConfirms entry and moves cursor left
Arrow keysConfirms entry and moves cursor in the arrow direction
EscCancels the entry — the cell reverts to its previous content. The green ✓ and red ✕ buttons in the formula bar do the same.

Entering Data Across a Row (Tab Method)

When filling a row of data across columns, use Tab between entries. When you reach the last column and press Enter, the cursor jumps back to the beginning of that row — one row down. This allows rapid row-by-row data entry without touching the mouse.

Example: Entering an employee record with 5 columns (Name, ID, Department, Salary, Start Date):
Type Name → Tab → type ID → Tab → type Department → Tab → type Salary → Tab → type Start Date → Enter. The cursor jumps to the Name column of the next row, ready for the next employee.

4.3 Entering Text

Any entry that Excel cannot recognise as a number, date, or formula is stored as text. Text cells are left-aligned by default.

Long Text That Overflows the Column

  • If text is longer than the column width, it visually overflows into the next column — as long as that adjacent cell is empty
  • If the adjacent cell contains data, the text is truncated on screen — but the full text is still stored in the cell. Click the cell to see the full content in the Formula Bar.
  • To display all text: widen the column (double-click the column border in the header to AutoFit) or apply Wrap Text (Home → Alignment → Wrap Text)

Forcing a Number to Be Stored as Text

Sometimes you need a number to be stored as text so Excel does not interpret it as a value — for example, employee ID numbers, phone numbers, or reference codes that start with a zero.

  • Method 1 (apostrophe): Type an apostrophe ' before the number: '0821234567. The apostrophe is not displayed in the cell — it just signals "store this as text". A small green triangle appears to flag that a number is stored as text.
  • Method 2 (format first): Select the cell(s) → Home → Number format dropdown → select Text → then type the number. The cell is pre-formatted as text before entry.
SA ID Number Example: SA ID numbers are 13 digits and often start with a meaningful sequence. Store them as text to preserve any leading zeros and prevent Excel from treating them as numeric values. Use the apostrophe method: '8001015009087.

AutoComplete for Text Entry

As you type in a column, Excel suggests a completion based on existing entries in that column. For example, if the column already contains "Cape Town", typing "Ca" will suggest "Cape Town".

  • Press Enter to accept the suggestion
  • Keep typing to ignore it and enter something different
  • Press Delete to dismiss the suggestion without accepting it
  • To pick from a list of existing column values: right-click the cell → "Pick From Drop-down List" — or — press Alt+

4.4 Entering Numbers

Numbers are right-aligned by default in Excel. Enter them without any formatting — do not type the Rand sign, commas, or other formatting characters when entering raw values. Apply formatting separately after entry.

Number Entry Rules

TypeHow to EnterExample
Whole numberType digits only — no spaces or commas1500 not 1 500 or 1,500
Decimal numberUse a full stop (period) as the decimal separator1500.50 — Excel's decimal separator is always a period in the formula bar
Negative numberType a minus sign before the number-250
PercentageType the number followed by the % sign — Excel stores it as a decimal (15% is stored as 0.15)15% → stored as 0.15
FractionType a 0 and a space before the fraction to prevent Excel interpreting it as a date0 3/4 displays as 3/4, stored as 0.75
Large number in scientific notationExcel auto-converts very large numbers to scientific notation. Widen the column or change the format to Number to display the full value.1.23E+09 = 1,230,000,000
Key Principle: Enter raw numbers, format them afterwards. Type 1500 then apply the Rand currency format — do not type R1,500. If you type R1,500, Excel stores it as text and you cannot sum it.

Numbers That Look Like Dates

Excel automatically converts certain text to dates: typing 1/4 becomes 1 April; typing 1-4 also becomes a date. To prevent this:

  • Format the cell as Text first (Home → Number → Text) before typing
  • Or type an apostrophe before the entry: '1/4 stores it as the text "1/4"

4.5 Entering Dates & Times

Dates and times are stored as numbers internally (days since 1 January 1900) but displayed in a human-readable format. Because they are numbers, you can subtract two dates to find the difference, or add days to a date to find a future date.

Entering Dates

Excel recognises several date entry formats:

You TypeExcel Stores & Displays AsNotes
15/01/202515/01/2025 (date value)DD/MM/YYYY — the SA standard entry format
15-01-202515/01/2025 (date value)Hyphens also work as date separators
15 Jan 202515/01/2025 (date value)Month name format — Excel recognises English month names
15 January 202515/01/2025 (date value)Full month name also works
Ctrl+;Today's date (static)Inserts today's date as a fixed value — it does not update tomorrow
Date Entry Tip for South Africa: Windows regional settings in SA are typically set to DD/MM/YYYY. Always enter dates in this order (day first, then month) to avoid Excel misreading 05/03/2025 as 3 May instead of 5 March. If a date is misinterpreted, check your Windows regional date settings.

Entering Times

You TypeResultNotes
08:3008:30 AM24-hour format — Excel stores as a decimal fraction of a day
14:4514:45 (2:45 PM)Hours above 12 are always PM in 24-hour format
8:30 AM8:30 AMAM/PM format also accepted
8:30:458:30:45 AMHours:Minutes:Seconds format
Ctrl+Shift+;Current time (static)Inserts the current time as a fixed value — does not update

Entering a Date and Time Together

  • Type the date, then a space, then the time: 15/01/2025 08:30
  • The cell displays both date and time. Format with a custom format like dd/mm/yyyy hh:mm to control how it appears.

Why Dates Might Show as Numbers

If a date displays as a number (e.g., 45672), the cell is formatted as General or Number instead of Date. Fix: select the cell(s) → Home → Number Format dropdown → select Short Date or Long Date — or press Ctrl+1 to open Format Cells and choose a date format.

4.6 Editing Cell Content

There are two ways to edit an existing cell: overwrite mode (replaces the entire content) and edit mode (changes part of the content).

Overwriting a Cell

  • Click the cell and type — the existing content is immediately replaced by what you type
  • Press Enter or Tab to confirm
  • Use this when you want to replace the entire cell value

Editing Part of a Cell (Edit Mode)

  • Method 1: Double-click the cell — enters Edit Mode. A cursor appears inside the cell and you can position it precisely to change part of the content.
  • Method 2: Click the cell → press F2 — also enters Edit Mode. The word Edit appears in the Status Bar at the bottom-left.
  • Method 3: Click the cell → click in the Formula Bar — edit the content there. This is the best approach for long formulas.

Editing Keyboard Shortcuts in Edit Mode

KeyAction in Edit Mode
HomeMove cursor to the beginning of the cell content
EndMove cursor to the end of the cell content
/ Move cursor one character left/right
Ctrl+ / Move cursor one word left/right
BackspaceDelete the character to the left of the cursor
DeleteDelete the character to the right of the cursor
Shift+/Select characters to the left/right of the cursor
EscCancel all changes and exit Edit Mode — the cell returns to its original content

Deleting Cell Content

  • Delete the content only (keep formatting): select cell(s) → press Delete
  • Delete content and formatting: select cell(s) → Home → Editing → Clear dropdown:
    • Clear All — removes content, formatting, and comments
    • Clear Formats — removes formatting only; keeps the content
    • Clear Contents — removes content only; keeps formatting (same as pressing Delete)
    • Clear Comments and Notes — removes only the comment/note
    • Clear Hyperlinks — removes hyperlinks but keeps the text

4.7 AutoFill — Filling Series and Patterns

AutoFill is Excel's ability to detect a pattern from one or two cells and extend it automatically across a range. It is one of the most powerful time-saving tools in Excel.

Using the Fill Handle

The fill handle is the small green square at the bottom-right corner of the selected cell or range. When you hover over it, the cursor changes to a thin black crosshair (+).

  1. Enter your starting value(s)
  2. Select the cell(s)
  3. Hover over the fill handle in the bottom-right corner until the cursor becomes a thin + crosshair
  4. Click and drag in any direction (down, up, right, left) to fill the adjacent cells
  5. Release — the cells fill with the detected pattern
  6. After releasing, an AutoFill Options button (⋯) appears at the end — click it to choose: Copy Cells, Fill Series, Fill Formatting Only, or Fill Without Formatting

What AutoFill Can Detect

You EnterAutoFill Produces
1, 2 (two cells)3, 4, 5, 6, 7… (increments by 1)
1, 3 (two cells)5, 7, 9, 11… (increments by 2)
10, 20 (two cells)30, 40, 50, 60… (increments by 10)
JanuaryFebruary, March, April, May…
JanFeb, Mar, Apr, May…
MondayTuesday, Wednesday, Thursday…
MonTue, Wed, Thu, Fri…
Q1Q2, Q3, Q4, Q1…
01/01/202502/01/2025, 03/01/2025… (increments by 1 day)
Item 1Item 2, Item 3, Item 4…
=A1*2 (formula)=A2*2, =A3*2… (adjusts relative references)
Text onlyCopies the same text to all filled cells

Double-Click Fill Handle (Fastest Method)

If the column to the left of your fill column already has data, double-clicking the fill handle fills down automatically to match the length of the adjacent data column — no dragging required. This is the fastest way to apply a formula to a long list.

Fill Using the Ribbon (Fill Command)

  1. Select the starting cell and the range to fill
  2. Home → Editing group → Fill dropdown
  3. Choose: Down (Ctrl+D), Right (Ctrl+R), Up, Left, Across Sheets, Series, or Justify

Fill Series Dialog (for complex number series)

  1. Enter the starting value in a cell
  2. Select that cell and the range to fill
  3. Home → Fill → Series…
  4. Configure: Series in (Rows/Columns), Type (Linear/Growth/Date/AutoFill), Step value (increment), Stop value (maximum)
  5. Click OK

4.8 Flash Fill — Instant Pattern-Based Data Transformation

Flash Fill is an AI-powered feature that detects patterns from your manual examples and completes the remaining cells automatically — with no formulas required. It is ideal for transforming or extracting data from existing columns.

How to Use Flash Fill

  1. In the column next to your source data, type the result you want for the first row
  2. Move to the second row in that same column
  3. Start typing the second result — Flash Fill often shows a grey preview of the entire column. Press Enter to accept.
  4. If the preview does not appear: Data tab → Data Tools → Flash Fill — or press Ctrl+E

Flash Fill Examples

Column A (source)You type in B1Flash Fill completes
Thabo NkosiNkosi, ThaboDlamini, Ayanda / Van Rooyen, Jan
Ayanda Dlamini(auto-detected and filled)
thabo@skailit.co.zathaboayanda / jan (extracts username before @)
0821234567082 123 4567073 456 7890 / 011 234 5678 (reformats phone numbers)
CAPE TOWNCape TownJohannesburg / Durban (converts case)
15/01/2025January 2025February 2025 / March 2025 (reformats dates)
Flash Fill vs Formulas: Flash Fill produces static values — the results do not update if the source data changes. If you need live results that update when source data changes, use text formulas (LEFT, MID, RIGHT, CONCATENATE, TEXTJOIN) instead. Flash Fill is perfect for one-time data cleaning tasks.

4.9 Copying & Moving Cells

Copying Cells

MethodHow
KeyboardSelect cell(s) → Ctrl+C to copy → click destination → Ctrl+V to paste. A moving dashed border (marching ants) confirms the copy is active.
Right-clickRight-click the cell(s) → Copy → right-click the destination → Paste
RibbonHome → Clipboard group → Copy → select destination → Paste
Drag-and-dropSelect cell(s) → hold Ctrl → hover over the selection border until cursor shows a + arrow → drag to the destination

Moving Cells

  • Cut and paste: Select → Ctrl+X → click destination → Ctrl+V
  • Drag and drop (no Ctrl): hover over the border of the selection until the cursor shows a four-arrow move icon → drag to the new location
  • Moving a cell updates all formula references that pointed to it — formulas automatically adjust to the new location

Keyboard Shortcut: Fill Down & Fill Right

  • Ctrl+D — Fill Down: copies the top cell in a selection down to all selected cells below it
  • Ctrl+R — Fill Right: copies the leftmost cell in a selection across all selected cells to the right

4.10 Selecting Cells & Ranges

Almost every Excel operation starts with a selection. The faster you can select the right cells, the more efficient your workflow.

What to SelectMethod
Single cellClick the cell — or — type its address in the Name Box and press Enter
Range of cellsClick the first cell → hold Shift → click the last cell — or — click and drag
Non-contiguous cellsClick the first cell/range → hold Ctrl → click each additional cell or range. You can format, delete, or enter data across all selections at once.
Entire columnClick the column letter in the header (e.g., click "B" to select all of column B)
Entire rowClick the row number in the header (e.g., click "5" to select all of row 5)
Multiple columnsClick the first column header → hold Shift → click the last column header
Entire worksheetClick the Select All button (triangle in the top-left corner, above row numbers and left of column A) — or — Ctrl+A
Data region (current table)Click inside a data range → Ctrl+A selects the current data region (contiguous block of data). Press Ctrl+A again to select the entire worksheet.
To the last data cellClick a cell → Ctrl+Shift+End → selects from the current cell to the last used cell in the sheet
Named rangeClick the Name Box dropdown → select the named range name → the range is selected

4.11 Undo, Redo & Repeat

ActionShortcutNotes
UndoCtrl+ZReverses the last action. Press repeatedly to undo multiple steps (up to 100 levels). Click the dropdown ▼ on the Undo button in the QAT to undo multiple steps at once.
RedoCtrl+YRe-applies an undone action. If there is nothing to redo, Ctrl+Y repeats the last action instead (very useful for applying the same formatting to multiple cells in sequence).
Repeat last actionCtrl+Y or F4Repeats the very last action. For example: insert a row → click the next location → press F4 to insert another row without going through the menu again.

4.12 Quick Self-Check

Q1: You enter the number 0823456789 as a phone number and Excel displays it as 823456789 (drops the leading zero). Why does this happen and how do you fix it?

✓ Excel treats the entry as a number and drops the leading zero because numbers don't have leading zeros. Fix option 1: type an apostrophe before the number — '0823456789 — the apostrophe tells Excel to store it as text, preserving the leading zero. Fix option 2: select the cell first → Home → Number Format → Text → then type the number. The cell is pre-formatted as text so the leading zero is preserved.

Q2: You have a column of 200 employee names in the format "Thabo Nkosi" and you need a new column with the format "Nkosi, Thabo". How do you do this without writing a formula?

✓ Use Flash Fill. In the adjacent column next to the first name (e.g., B1), type the result manually: "Nkosi, Thabo". Move to B2 and start typing "Dlamini, " — Excel detects the pattern and shows a grey preview of all 200 results. Press Enter to accept all completions instantly. Alternatively: type B1's result, then press Ctrl+E (Flash Fill shortcut) to fill the entire column.

Q3: You enter 5/3 in a cell expecting to see the fraction five-thirds, but Excel displays it as "05 Mar" (5 March). How do you enter the fraction correctly?

✓ Excel interprets 5/3 as a date (5 March). To enter a proper fraction: type 0 5/3 (zero, space, then the fraction). The zero tells Excel it is a number, not a date. The cell displays 5/3 and stores the value 1.667. For a fraction less than 1 (e.g., three-quarters), type 0 3/4 — displays as 3/4 and stores 0.75.

Q4: You need to fill cells A1:A12 with the months January through December. What is the fastest way to do this?

✓ Type "January" in cell A1 → press Enter → click back on A1 → hover over the fill handle (small green square at the bottom-right of the cell) until the cursor becomes a thin crosshair (+) → drag down to A12. Excel detects "January" as the start of a month series and fills February through December automatically. Alternatively: type "January" in A1 → select A1:A12 → Home → Fill → Series → set Type to AutoFill → OK.

Q5: What is the difference between pressing Delete on a cell versus using Home → Clear → Clear All?

✓ Pressing Delete removes the cell's content only — any applied formatting (font colour, background colour, number format, borders) remains in the cell. If you then type new content, it appears with the old formatting still applied. Clear All removes everything — content, all formatting, comments, and hyperlinks — leaving a completely blank, unformatted cell. Use Delete for quick content removal. Use Clear All when you want a completely fresh cell with no formatting traces.

Q6: You have a formula in C1 that you want to copy down to C2:C100. What is the fastest single method to do this without dragging?

✓ The fastest method is the double-click fill handle: click C1 to select the cell with the formula → hover over the fill handle (bottom-right green square) until the cursor becomes a thin + crosshair → double-click. Excel automatically fills the formula down to C100 (matching the length of the adjacent data in column B or A). This only works if the adjacent column has data in the same rows. Alternatively: select C1:C100 → press Ctrl+D (Fill Down) — this copies C1's content to all selected cells below.

✓ Module 4 Complete — You Have Learned:

  • The four data types — Text (left-aligned), Numbers (right-aligned), Dates & Times (right-aligned), Formulas — and how to identify which type a cell contains
  • Cell entry confirmation keys — Enter (down), Tab (right), Shift+Enter (up), Shift+Tab (left), arrow keys, Esc (cancel)
  • Tab method for rapid row-by-row data entry; how Enter returns to the first column after Tab navigation
  • Handling text — long text overflow and truncation; forcing numbers to text with apostrophe or Text format; SA ID number handling; AutoComplete (Alt+▼ pick from list)
  • Number entry rules — no formatting characters; period as decimal; negative numbers; percentage; fractions (0 3/4); scientific notation
  • Date entry formats (DD/MM/YYYY, DD-MM-YYYY, DD Month YYYY, DD MMM YYYY); Ctrl+; for today's date; SA regional date order warning; dates showing as numbers (fix with format)
  • Time entry (24-hour and AM/PM); Ctrl+Shift+; for current time; entering date+time together
  • Overwrite mode vs Edit Mode (F2 or double-click); Formula Bar editing; all Edit Mode keyboard shortcuts
  • Delete (content only) vs Clear All/Formats/Contents/Comments/Hyperlinks — when to use each
  • AutoFill — the fill handle; drag to fill; double-click to fill to end of adjacent data; AutoFill Options button; what patterns Excel detects (numbers, months, days, dates, Q1-Q4, text+number, formulas)
  • Fill Series dialog — Linear, Growth, Date, AutoFill types; Step and Stop values
  • Flash Fill (Ctrl+E) — pattern-based transformation; practical examples (name format, email extraction, phone formatting, case conversion, date reformatting)
  • Flash Fill vs formulas — static results vs live updating
  • Copying cells — Ctrl+C/V, right-click, drag+Ctrl; moving cells — Ctrl+X/V, drag; Ctrl+D (fill down); Ctrl+R (fill right)
  • All cell and range selection methods — single, range, non-contiguous (Ctrl+click), entire column/row, multiple columns/rows, entire worksheet (Ctrl+A), data region, last used cell (Ctrl+Shift+End), named range
  • Undo (Ctrl+Z up to 100 levels), Redo (Ctrl+Y), Repeat last action (F4)

← Back to All Modules