1. Help Center
  2. Administration & Management

Absolute Referencing

Understanding Absolute Referencing in Excel

When working with formulas in Excel, it’s important to understand how cell references behave when copied across multiple cells. One essential concept to master is absolute referencing, which allows you to keep a specific cell fixed in a formula—no matter where the formula is copied or moved.


What Is Absolute Referencing?

Absolute referencing ensures that a particular cell reference remains constant when a formula is copied to another cell. This is done by inserting a dollar sign ($) before both the column letter and row number in the cell reference.

Example:

If you want to always refer to cell A3, you would write it as:

$A$3

This tells Excel not to change the reference to A3, even when the formula is copied elsewhere.


Why Use Absolute References?

Absolute references are useful when you need one constant value—like a tax rate, conversion factor, or fixed income—to be used in multiple formulas across a worksheet. They help:

  • Maintain data accuracy
  • Reduce manual re-entry of values
  • Improve efficiency when applying formulas across rows or columns


Using Absolute References in Excel: Markup Example

When creating formulas or functions in Excel, you may want to refer to a specific cell and be able to copy the formula to other rows without changing that reference. This is where absolute referencing becomes useful.

 

Example: Calculating Markup on Products

Imagine you have a list of products, and you're calculating the markup for each one.

Column D contains the Unit Price of each product (e.g., D2, D3, D4, etc.)

Cell M2 contains a fixed Markup Percentage that applies to all products

To calculate the markup value for the product in row 2, your formula would be:

= D2 * M2

This works fine for row 2. But when you copy the formula down to row 3, Excel will automatically change it to:

= D3 * M3

This is a problem because M3 is empty—you only want to multiply by M2, which holds your markup percentage for all products.

 

Solution: Use Absolute Referencing

To prevent the reference to M2 from changing when the formula is copied down, use absolute referencing by adding $ signs:

= D2 * $M$2

D2 will change to D3, D4, etc., as the formula is copied—this is what you want.

$M$2 will stay fixed, ensuring that all rows use the same markup percentage from M2.

 

Furthermore, you can use $ to lock parts of a cell reference.

$M$2 locks both the column (M) and row (2), so the reference never changes.

This is ideal when you have a single value (like a markup rate, tax, or discount) that needs to be used across multiple rows.

 


Final Tip

If you only want to lock the row or the column (not both), you can use:

$M2 – locks the column only

M$2 – locks the row only

But for most fixed values, $M$2 is the safest choice.

Summary

  • Absolute references are written with $ symbols, like $A$1.
  • They ensure a specific cell reference doesn’t change when formulas are copied.
  • Use them when referencing a value that should remain constant across multiple calculations.

By mastering this concept, you’ll make your spreadsheets smarter, faster, and more reliable.