excelcell referencesformulasrelative referenceabsolute referencemixed reference2025-12-18

Excel Cell References: The Complete Guide

Introduction

Cell references are the foundation of Excel formulas. Understanding the different types of references is crucial for using Excel formulas correctly. This article will detail the three types of references in Excel: relative references, absolute references, and mixed references, with practical examples to help you master their usage.


1. Relative References

What are Relative References?

Relative references are the default reference type in Excel. When you copy a formula, the referenced cell addresses change relative to the new location.

Syntax

Simply use the cell address, such as A1 or B2:C5.

How They Work

When a formula is copied from one cell to another, relative references automatically adjust based on the relative position of the target cell to the source cell.

Example

Suppose we have the following data:

Product Sales Price Amount
A 10 5
B 20 8
C 15 6
  1. Enter the formula =B2*C2 in cell D2
  2. Press Enter to get the result 50
  3. Move the mouse to the bottom-right corner of cell D2 until a black cross appears, then drag down to cell D4
  4. Observe the formulas in D3 and D4, which become =B3*C3 and =B4*C4 respectively

Relative Reference Example
Relative Reference Example

Use Cases

  • When formulas need to be applied to multiple rows or columns
  • When the relative position of referenced cells remains fixed when copying formulas
  • Most daily formula calculations

2. Absolute References

What are Absolute References?

Absolute references are references where the cell address remains unchanged when the formula is copied.

Syntax

Add dollar signs $ before the column letter and row number, such as $A$1 or $B$2:$C$5.

How They Work

When a formula is copied from one cell to another, absolute references do not change.

Example

Suppose we need to calculate the percentage of each product's sales to total sales:

Product Sales Percentage
A 10
B 20
C 15
Total 45
  1. Calculate total sales in cell B5: =SUM(B2:B4) to get 45
  2. Enter the formula =B2/$B$5 in cell C2
  3. Press Enter and set the cell format to percentage
  4. Drag the fill handle of C2 down to C4
  5. Observe that the formulas in C3 and C4 still remain =B3/$B$5 and =B4/$B$5

Absolute Reference Example
Absolute Reference Example

Use Cases

  • When the referenced cell in the formula is fixed (such as tax rate, total amount)
  • When the same fixed value needs to be referenced in multiple formulas
  • Calculating percentages, ratios, etc., that require a fixed denominator

3. Mixed References

What are Mixed References?

Mixed references combine relative references and absolute references. They can fix either the column letter or the row number while allowing the other to change relatively.

Syntax

  • Fix column letter, row number changes relatively: $A1
  • Fix row number, column letter changes relatively: A$1

How They Work

When a formula is copied, the fixed part remains unchanged, while the relative part automatically adjusts based on the target cell position.

Example 1: Fixed Column

Suppose we need to calculate sales for different products in different regions, with prices fixed in column B:

Product Price Region 1 Sales Region 1 Amount Region 2 Sales Region 2 Amount
A 5 10 15
B 8 20 25
C 6 15 18
  1. Enter the formula =C2*$B2 in cell D2
  2. Press Enter to get 50
  3. Drag the fill handle of D2 to the right to F2
  4. Observe that the formula in E2 becomes =E2*$B2

Mixed Reference Example 1
Mixed Reference Example 1

Example 2: Fixed Row

Suppose we need to calculate each month's sales as a percentage of the annual target, with the annual target fixed in row 1:

Month Sales Annual Target Percentage
Jan 10000 120000
Feb 12000 120000
Mar 11000 120000
  1. Enter the formula =B2/C$2 in cell D2
  2. Press Enter and set the cell format to percentage
  3. Drag the fill handle of D2 down to D4
  4. Observe that the formulas in D3 and D4 become =B3/C$2 and =B4/C$2 respectively

Mixed Reference Example 2
Mixed Reference Example 2

Use Cases

  • When calculations are needed in a two-dimensional table
  • When a formula needs to fix either rows or columns
  • When creating pivot tables or complex reports

4. How to Quickly Switch Reference Types

In Excel, there's a quick shortcut to switch reference types: F4.

How to Use

  1. Select the cell reference in the formula bar
  2. Press F4 to switch reference types
  3. Each press of F4 cycles through the reference types:
    • Relative reference: A1
    • Absolute reference: $A$1
    • Mixed reference (fixed row): A$1
    • Mixed reference (fixed column): $A1

Example

  1. Enter =A1 in a cell
  2. Select A1
  3. Press F4 to change to =$A$1
  4. Press F4 again to change to =A$1
  5. Press F4 again to change to =$A1
  6. Press F4 again to return to =A1

Quick Reference Switch Example
Quick Reference Switch Example

Tips

  • You can select multiple cell references and press F4 to batch switch
  • When entering formulas, you can first enter relative references and then switch to the desired reference type

5. Practical Application Examples

Example: Creating a Payroll Sheet

Suppose we need to create a simple payroll sheet with basic salary, bonus, and deductions:

Employee Name Basic Salary Bonus Deductions Net Salary
John Doe 5000 1000 200
Jane Smith 6000 1200 300
Bob Johnson 5500 1100 250
  1. Enter the formula =B2+C2-D2 in cell E2
  2. Drag the fill handle of E2 down to E4
  3. All employees' net salaries are automatically calculated

Payroll Sheet Example
Payroll Sheet Example

Example: Calculating VAT

Suppose the VAT rate is 13%, and we need to calculate the tax-inclusive amount for each product:

Product Tax-Exclusive Amount VAT Rate Tax-Inclusive Amount
A 100 13%
B 200 13%
C 150 13%
  1. Enter the formula =B2*(1+$C$2) in cell D2
  2. Drag the fill handle of D2 down to D4
  3. All products' tax-inclusive amounts are automatically calculated

VAT Calculation Example
VAT Calculation Example


Summary

Cell references are the foundation of Excel formulas. Mastering different types of references is crucial for using Excel formulas correctly:

  • Relative References: Default reference type, addresses change relatively when copying formulas
  • Absolute References: Use $ to fix addresses, remain unchanged when copying formulas
  • Mixed References: Fix either rows or columns, the other changes relatively
  • F4 Shortcut: Quick way to switch reference types

By reasonably using different types of cell references, you can greatly improve the efficiency and accuracy of Excel formulas. In practical applications, choosing the appropriate reference type based on specific needs is key.


Have a problem with Excel or Google Sheets?

Tell us about the issue you're facing, and we'll create a step-by-step guide for it.