Be able to insert cell(s), row(s) and column(s), delete cell(s), row(s) and column(s), merge cells

20 Spreadsheets – Inserting, Deleting, Merging & Manipulating Data

Learning Objectives (AO1‑AO3)

  • AO1 – Knowledge: Define key terminology, recall menu paths and keyboard shortcuts for inserting, deleting and merging cells, rows and columns.
  • AO2 – Application: Perform insert/delete/merge operations; create and edit formulas; use common functions; define named ranges; work with cross‑sheet references.
  • AO3 – Analysis/Evaluation: Analyse how structural changes affect existing data and formulas and choose the most efficient method for a given task.

1. Inserting Rows, Columns and Cells

What to InsertSteps (Menu / Right‑click)Keyboard Shortcut (Excel Windows)Effect on Formulas
Row
  1. Select the entire row **below** the desired position.
  2. Menu: Insert → Row Above (or Row Below if the row above is selected).
  3. Or right‑click → Insert Row.
Ctrl + + (numeric keypad) All formulas that refer to cells **below** the new row shift down automatically. Absolute references (e.g. $A$5) stay fixed.
Column
  1. Select the column **to the right** of the desired position.
  2. Menu: Insert → Column Left (or Column Right).
  3. Or right‑click → Insert Column.
Ctrl + Shift + + (numeric keypad) Formulas referencing cells to the right of the insertion shift right. Absolute column references (e.g. $B2) remain unchanged.
Cell(s) – Shift Right or Shift Down
  1. Select the cell or range where the new cells are required.
  2. Menu: Insert → Cells… and choose Shift cells right or Shift cells down.
  3. Or right‑click → Insert Cells for the same options.
None built‑in; use the menu or right‑click. Only the cells that move are re‑referenced in dependent formulas. Absolute references that point to a cell that does **not** move stay unchanged.

2. Deleting Rows, Columns and Cells

What to DeleteSteps (Menu / Right‑click)Keyboard Shortcut (Excel Windows)Effect on Formulas
Row
  1. Select the row number to be removed.
  2. Menu: Delete → Row.
  3. Or right‑click → Delete Row.
Ctrl + - (numeric keypad) Formulas that referenced cells in the deleted row are automatically adjusted (e.g., =A5 becomes =A4). Absolute references to the deleted row become #REF!.
Column
  1. Select the column letter to be removed.
  2. Menu: Delete → Column.
  3. Or right‑click → Delete Column.
Ctrl + Shift + - (numeric keypad) Formulas shift left to fill the gap. Absolute column references become #REF!.
Cell(s) – Shift Left or Shift Up
  1. Select the cell(s) to delete.
  2. Menu: Delete → Cells… and choose Shift cells left or Shift cells up.
  3. Or right‑click → Delete Cells for the same options.
None built‑in; use the menu or right‑click. Only the cells that move are re‑referenced. Any formula that pointed directly to a deleted cell returns #REF!.

3. Merging & Un‑merging Cells

  1. Select a contiguous range of cells in the same row or column.
  2. Menu: Format → Merge Cells →
    • Merge Across – merges each row in the selection separately.
    • Merge Down – merges each column in the selection separately.
    • Merge All – creates one single cell from the whole selection.
  3. Toolbar shortcut (if displayed): Merge & Center button.
  4. To un‑merge, select the merged cell and choose Format → Merge Cells → Unmerge.
Caution – Data loss on un‑merge: When a merged cell is un‑merged, only the content of the upper‑left cell is retained; any data in the other cells is discarded. Verify the content before un‑merging.

4. Building Formulas – Core Concepts (20.1)

4.1 Order of Operations

Excel follows the standard mathematical hierarchy:

  1. Parentheses ( )
  2. Exponents ^
  3. Multiplication and Division * /
  4. Addition and Subtraction + -

Example: =A1+B1*C1 first multiplies B1*C1, then adds A1.

4.2 Cell‑reference Types

ReferenceFormBehaviour when copiedBehaviour when rows/columns are inserted or deleted
RelativeA1Changes relative to the new location.Adjusts automatically to the new address.
Absolute (column)$A1Column stays fixed; row changes.Column stays fixed when a column is inserted/deleted; row adjusts.
Absolute (row)A$1Row stays fixed; column changes.Row stays fixed when a row is inserted/deleted; column adjusts.
Fully absolute$A$1Never changes.Never changes – useful for constants such as tax rates.

4.3 Cross‑sheet References

To use a value from another worksheet, prefix the cell address with the sheet name in single quotes:

=‘Sheet2’!B3

When rows/columns are inserted on the referenced sheet, Excel updates the reference automatically, preserving the link.

4.4 Named Ranges

  1. Select the cell or range.
  2. Menu: Formulas → Define Name (or right‑click → Define Name).
  3. Enter a meaningful name (e.g., Sales_Q1).
  4. Use the name in any formula: =SUM(Sales_Q1).

Advantages: easier to read, reduces errors when rows/columns are inserted or deleted, and works across sheets.

4.5 Example Formula Incorporating All Concepts

=IF($B$2>0, (‘Data’!C5*$D$1)/SUM(Sales_Q1), 0)
  • $B$2 – fully absolute reference (constant threshold).
  • ‘Data’!C5 – cross‑sheet reference.
  • $D$1 – absolute reference to a tax rate.
  • SUM(Sales_Q1) – named range.

5. Common Functions (20.1)

FunctionPurposeSyntaxExample
SUMAdds numbersSUM(number1, [number2], …)=SUM(B2:B15)
AVERAGEMean valueAVERAGE(range)=AVERAGE(C2:C15)
COUNTCounts numeric entriesCOUNT(range)=COUNT(D2:D15)
MAXLargest valueMAX(range)=MAX(E2:E15)
MINSmallest valueMIN(range)=MIN(E2:E15)
IFConditional testIF(logical_test, value_if_true, value_if_false)=IF(F2>100,"High","Low")
VLOOKUPVertical lookupVLOOKUP(lookup_value, table_array, col_index, [range_lookup])=VLOOKUP(G2,$A$2:$D$20,3,FALSE)
CONCATENATE / &Join text stringsCONCATENATE(text1, [text2], …)=A2 & " – " & B2

6. Impact of Structural Changes on Formulas (AO3)

  • When a row or column is inserted, Excel automatically updates **relative** references to point to the same logical data. Absolute references remain unchanged.
  • Deleting a row/column removes the referenced cell; any formula that pointed exactly to that cell returns #REF!. Using absolute references for constants (e.g., tax rate) protects them from accidental deletion.
  • Named ranges and cross‑sheet references are resilient to insertions/deletions because they refer to a defined set of cells rather than a fixed address.
  • When merging cells, only the value in the upper‑left cell is retained. Formulas that previously referenced any of the merged cells will now refer to the merged cell’s address (the upper‑left one).

7. Practical End‑to‑End Example (Monthly Sales Report)

Scenario: Prepare a report that shows product codes, quantities sold, unit price, and total revenue. The worksheet must be easy to update each month.

  1. Insert a new product row above the current total row.
    • Select the total row → Insert → Row Above (or Ctrl + +).
  2. Delete the “Discount” column (no longer required).
    • Select column FDelete → Column (or Ctrl + Shift + -).
  3. Create a centered title spanning A‑E.
    • Select A1:E1 → Merge & Center.
    • Enter Monthly Sales Report – July 2025.
  4. Calculate total revenue per product.
    • In E2 enter =B2*C2 (Quantity × Unit Price).
    • Copy the formula down to the last product row (drag the fill handle).
  5. Summarise the whole‑sheet total.
    • In the cell directly below the merged title (e.g., A22) enter =SUM(E2:E20).
    • Format the cell as Currency.
  6. Define a named range for the quantity column.
    • Select B2:B20 → Formulas → Define Name → name it Qty.
    • Now the total quantity can be shown with =SUM(Qty).
  7. Apply conditional formatting to highlight high‑selling items.
    • Select the range E2:E20.
    • Home → Conditional Formatting → Highlight Cells Rules → Greater Than… → enter 500 and choose a green fill.
  8. Sort the table by revenue (largest to smallest).
    • Click any cell in column E → Data → Sort Z‑A.
    • Confirm that the entire data range (A2:E20) is selected.
  9. Print setup.
    • Select A1:E22 → Page Layout → Print Area → Set Print Area.
    • Orientation: Landscape.
    • Scaling: Fit Sheet on One Page.
    • Preview with File → Print → Print Preview before printing.

8. Keyboard Shortcut Summary

ActionMenu PathShortcut (Windows)Notes
Insert RowInsert → Row Above / Row BelowCtrl + + (numeric keypad)Works when a row is selected.
Insert ColumnInsert → Column Left / Column RightCtrl + Shift + + (numeric keypad)Works when a column is selected.
Delete RowDelete → RowCtrl + - (numeric keypad)Deletes the selected row.
Delete ColumnDelete → ColumnCtrl + Shift + - (numeric keypad)Deletes the selected column.
Merge & CenterHome → Merge & Center buttonNone (toolbar button)Creates one merged cell and centres the text.
Un‑mergeFormat → Merge Cells → UnmergeNone (menu)Only the upper‑left cell’s content is kept.
FindHome → Find & Select → Find…Ctrl + FQuick search for text or numbers.
ReplaceHome → Find & Select → Replace…Ctrl + HReplace one or more occurrences.

9. Syllabus Alignment – Quick Reference

Syllabus Requirement (20.1‑20.3)Coverage in NotesAny Gaps?
Insert/delete rows, columns, cellsSections 1 & 2 – complete with menu, right‑click, shortcuts.None.
Merge/un‑merge cellsSection 3 – includes data‑loss warning.None.
Basic formula construction, order of operationsSection 4.1 & 4.2.None.
Cell‑reference types (relative, absolute) and impact of insert/deleteSection 4.2 table + discussion in Sections 1 & 2.None.
Cross‑sheet referencesSection 4.3.None.
Named rangesSection 4.4.None.
Common functions (SUM, AVERAGE, COUNT, MAX, MIN, IF, VLOOKUP, etc.)Section 5.None.
Impact of structural changes on formulas (analysis/evaluation)Section 6.None.
Sorting, filtering, searching, formatting, printingBriefly mentioned in the practical example; full details can be expanded in a separate module (20.2‑20.3).Minor – detailed steps are outside the core focus of this note.

Create an account or Login to take a Quiz

86 views
0 improvement suggestions

Log in to suggest improvements to this note.