A cell reference or a cell address is a way to define a cell on a worksheet, it is formed by combining a column letter and a row number. To refer any if the cell on a worksheet (in any formula/ to copy the cell) we use cell reference.
Example: To refer to the cell present in row 2 & column D, cell reference is: D2, where D is column letter & 2 is the row number.
Relative Cell Reference :
By default, every cell is a relative reference. Example: If you refer to cell D2 in cell F2, you refer to a cell that is 2 columns to the left (F-D = 3) in the same row number 2.
The relative relation for that location will be updated automatically when it is copied to other positions in a worksheet. (Because a relative cell reference defines an offset to another cell – say, 2 columns left within the same row in the example mentioned above).
If you copy F2 to F4, then F4 = D4 (as F2 = D2, i.e., 2 columns left in the same row), So D4 is two columns left to F4 in the same row 4.

Absolute Cell Reference :
There are times when the cell reference must stay the same when copying or using AutoFill. Using dollar signs, a column and/or row reference can be kept constant. So, to get an absolute reference from a relative, we can use the dollar sign ($) characters.
We use an absolute reference to refer to an actual fixed location on a worksheet whenever copying is done. The reference here is locked such that rows and columns do not shift when copied.
Dollar ($) before row fix the row & before the column fixes the column.
Example: Fixing/Locking both – row & column – Say if we want to lock row 2 & column D, we will use $D$2 as:
F2 = $D$2, when copied to F4, F4 also becomes = $D$2.

Excel Mixed Cell Reference :
A mixed cell reference is a mixture of absolute & relative reference, i.e., an absolute column and relative row, or an absolute row and relative column. To get an absolute column or absolute row, you can put the $ before the column letter or before the row number.
Example: $D2 is relative for row 2 but absolute for column D, and D$2 is absolute for row 2 but relative for column D.
Here Dollar ($) before row number fixes/locks the row & before the column name fixes/locks the column.
Example 1: When we fix the only row: If we have F2 =$D2 then :
We used $ before the column number, so we are locking the only column here.

When F2 is copied to H4, then H4 = $D4 because the column is the same here, i.e., column letter D But the row is relative (i.e. the same row in which copying is done).
Example 2: When we fix /lock the only row : If we have E2 = C2*A$2 then :
When E2 is copied to E3, E3 = C3*A$2 (not C3*A3) because the row (number 2) has been locked already.

I hope you now know the relative and absolute cell references, how to use $ sign and how to use mixed cell references.
Similar Reads
Mixed Cell References in MS Excel
Cell: The row and column in Excel together make a cell. We input the value/data(s) in cells of a spreadsheet. There are three types of values that can be entered into the cell. NumbersAlphabeticFormulas Cell reference ââââââis the address or name of a cell or a range of cell is known as Cell referen
3 min read
Named Range in Excel
We can use the name for the cell Ranges instead of the cell reference (such as A1 or A1:A10). We can create a named range for a range of cells and use then use that name directly in the Excel formulas. When we have huge data sets, Excel-named ranges make it easy to refer (by directly using a name to
7 min read
Relative References in Excel Macros
We have two options to refer a cell in Excel VBA Absolute references and Relative references. Â Default Excel records macro in Absolute mode. In this article, we learn about Relative references in Excel VBA. Â We select a cell âA1â, turn on âUse Relative Referenceâ and record a macro to type some text
5 min read
Relative, Absolute and Mixed Cell Reference in Excel
Understanding how cell references in Excel work is a cornerstone of effective spreadsheet use. Whether youâre building formulas that auto-adjust to changes, locking a specific cell, or creating dynamic worksheets, the types of cell referencesârelative, absolute, and mixedâplay a vital role. This gui
12 min read
Refresh Pivot Table Data in Excel
Refreshing a Pivot Table in Excel ensures your data reflects the most current and accurate information, which is essential for real-time updates and reliable reporting. Whether you're managing dynamic datasets or creating detailed reports, learning how to refresh Pivot Table in Excel is key to maint
8 min read
Excel MID Function
If you use programming languages, like Python, you must have used a function called string slicing, which extracts a part of the string and can directly print it, or store a result. The same functionality can be achieved in Excel when we use Excel's MID function. The MID function can return a part o
7 min read
Worksheets in Excel
If you're new to MS Excel, you've likely heard the term "worksheet." But have you ever wondered what an Excel worksheet actually is? So, in a spreadsheet program, a worksheet is a collection of cells (it is a basic data unit in the worksheet) where you can store and manipulate data. By default, ever
5 min read
Workbooks in Microsoft Excel
Spreadsheet programs have become essential for many organizations for analyzing and storing data and if we talk about the most recognized spreadsheet program, then it will be MS Excel. Now, if you have worked with Microsoft Excel, then you have heard about the terms workbooks and worksheets. In the
5 min read
How to Find Range in Microsoft Excel
Understanding the range of a dataset is key to grasping data spread and is essential for interpreting and making data-driven decisions. Excel offers various methods to calculate ranges, enhancing your data analysis skills. This article explains the concept of range in statistics, explores Excel func
6 min read
Working with Spreadsheets in MS Excel
Spreadsheets are grid-based files containing scalable entries that are used to organize data and make calculations. Spreadsheets are used by people all around the world to build tables for personal and corporate purposes. You may also utilize the tool to make sense of your data by using its features
8 min read