What Does the “$” Symbol in Excel Cell References Mean?

スポンサーリンク
スポンサーリンク

What Does the “$” Symbol in Excel Cell References Mean?

When using formulas and functions in Excel, you may often see formats like “$A$1” or “A$1”. The “$” symbol plays an important role in specifying the type of cell reference. This article explains the function of the “$” symbol with practical examples.

Types of Cell References

The “$” symbol allows you to set whether a cell reference is fixed or relative. Below are the different types of cell references and their characteristics:

Type of Reference Example Description
Relative Reference A1 The reference adjusts based on where the formula is copied.
Absolute Reference $A$1 Both the column and row are fixed, so the reference does not change when copied.
Mixed Reference (Column Absolute, Row Relative) $A1 The column is fixed, but the row changes based on where the formula is copied.
Mixed Reference (Column Relative, Row Absolute) A$1 The row is fixed, but the column changes based on where the formula is copied.

Example: How “$” Works

Here’s a practical example demonstrating how formulas with “$” behave:

Data Example

In the table below, the formula “=A1*$D$1” is entered in column C.

A B C D
1 10 =A1*$D$1 2
2 20
3 30

Results

When the formula “=A1*$D$1” is copied down column C, the calculated results appear as follows:

A B C D
1 10 20 2
2 20 40
3 30 60

Explanation

  • The “$D$1” reference is an absolute reference, so it always points to cell D1.
  • The “A1” reference is relative, so when copied down column C, it changes to “A2”, “A3”, etc. Meanwhile, “$D$1” remains unchanged, meaning “always refer to D1“.

Points to Note

  • The “$” symbol is used to fix a cell reference and does not directly affect calculations.
  • Combining absolute and relative references allows for flexible formulas.
  • Pressing the F4 key allows you to toggle between reference types easily.

Conclusion

In Excel, the “$” symbol is used to fix cell references. Understanding and using it effectively can help you perform complex calculations and manage data efficiently.