Very often we reference the data of a Cell in another Cell in Excel. We can use equals to sign (=) then enter the cell address to display Cell contents in another Cell. Let us see how to display cell contents in another cell in Excel in this topic.

Referencing the Cell Contents in Another Cell

Double click on any Cell in Excel Sheet to make the Cell editable. Then enter the equals to sign (=) and enter the address of Cell which you wants to refer. You can refer a single Cell or a Range using this approach. Here are the examples on referencing the content of a Cell and displaying in another cell in Excel. Let us see the detailed examples on referencing the cells in the following scenarios.

  • Referencing a specific Cell
  • Relative Reference
  • Absolute Reference
  • Referencing a Range (multiple cells)
  • Referencing and Concatenating Cells
  • Referencing Cells from another Sheet
  • Referencing a Named Range
  • Showing Cell values on a Shape
  • Showing Cell value in Chart Title

It is very important to know the types of cell references we can use while referencing the cells in Excel. There are two types of references in Excel, Relative and Absolute References.

Referencing a specific Cell

We can enter ‘=’ sign and specify the cell address in any cell in the Excel Sheet. For example, you can enter ‘=A1’ at Range B1 to refer the Cell content of A1 in B1, you can enter ‘=AB25’ at C5 to refer the content of range AB25 in Range C5.

Begin with = Sign to Refer a Cell
= Sign to Refer a Cell Data

Equals to sign (=) is used to refer Cell in Another Cell

Referencing a Cell in Excel
Reference Cell in Excel

Formula Bar Showing a Cell Content in another Cell

Displaying Cell Content in Excel
Display Content of Cell in Another Cell

Showing a Cell Content in another Cell in Excel

Fill down the Formula in Excel
Fill down the formula in Other Cell

Double Click or Drag down with mouse

Relative Reference in Excel

Relative reference is used to change the Cell Column or Row relatively while copying the cells with formula to another range. Row number and Column Names will changes relatively when we use relative cell reference.

For example, when you have =A1 reference in Cell B1, it will change to A2 while copying down to the next row (i.e; A2), it will chnage to B1 when copying to the next Column (i.e; C1). The change in number of columns and rows depending to the relative number of columns and rows which you are pasting the cells.

For example, if you copy the same ‘=A1’ reference in Cell B1, it will change to A5 when you paste at cell B1, it will become D5 when you paste in E5.

Relative Reference in Excel
Relative Reference in Excel

Do not use $ to create Relative Cell References

Relative Reference – Formula in Excel
Relative Reference - Formula in Excel

Cell Formula will changes relatively in Relative Reference

Display Text From Another cell in Excel

We can display the text of another cell using Excel Formula. We can use ‘=’ assignment operator to pull the text from another cell in Excel.

For example, the following formula will get the text from Cell D5 and display in Cell B2.

=D5

You can enter =D5 in Range B2. You can use ‘$’ symbol to make the cell reference as absolute (=$D$5).

Display Value From Another cell in Excel

We can display the Value of another cell using Excel Formula. We can use ‘=’ assignment operator to pull the value of another cell in Excel.

For example, the following formula will get the value from Cell C6 and display in Cell A3.

=C6

You can enter =C6 in Range A3. You can use ‘$’ symbol to make the cell reference as absolute (=$C$6).

Referencing a Range (multiple cells)

We can refer multiple Cells in Excel using Excel Formula. We can get the cell contents and display in a cell or refer the range to perform calculations.

Getting Values From Multiple Cells in Excel

Often we refer the multiple cells in put into once Cell. We can refer the multiple Cells and Ranges in Excel to combine the text or to perform the calculations.

Getting Text from Multiple Cells

The following formula will refer the text from multiple cells and combine them to display in one Cell.  This will get the contents form Cell E2 and F2 and display the combined text in another Cell.

=E2&F2

Combine Text of Multiple Cells:

We can use & operator to concatenate the text from multiple cells. We can provide a space or – to separate the text to form multiple words. The following Example shows you how to get the data from multiple cells and display the combined text in one cell.

=E2&” ” &F2

Getting Values from Multiple Cells:

Sometimes, we need to pull the values of another cell and perform some calculations in a cell. For example, We have Cost and Quantity values in two different cells (B2,C2) and we can find the total cost in another Cell (A2).

=B2*C2

Combining Values of Multiple Cells:

We can also combine the numerical data of multiple cells using & operator. We can concatenate both Text and numerical data and display in required Cell. The following example shows you how to get the different formats of data from multiple cells and display the combined information in a cell.

=” Total Cost is ” &B2*C2

Referring Data from a Range of Cells

The following example shows you referring a range and perform mathematical calculations. It will reference Range D1 to E5 and put the Sum of the data in Range A1

=SUM(D1:E5)

Referencing Cells from another Sheet

Referencing the Cells from one sheet is very easy in Excel. We need to pass the Sheet Name in the Formula followed by ‘!’ symbol.  Exclamation symbol is used to refer the Worksheet in the Excel Formula.

The following example will refer the Cell content form another worksheet (Data) and display in a Cell.

=Data!A1

We need to put the sheet name between single quotes when the Sheet name is having multiple words. For example the following formula will refer the Cell form another sheet named with multiple words (Data Sheet)

=’Data Sheet’!A1

Referencing and Concatenating Cells

We can concatenate the Cells using Concatenate operator or using CONCATENATE Function in Excel. Let us see the both the methods to concatenate Cells in Excel.

Using Concatenate Operator:  You can refer the cells using the Cell address and use the & (ampersand) operator to concatenate the Cells. For example, the following formula will concatenate cells (D1 and E1).

=D1&E1

‘OR

=D1&” “&E1

Using CONCATENATE Function: We can use the Excel Function to refer and concatenate multiple cells and ranges in Excel. You use the , (comma) t0 specify the reference of each Cell in the formula.

=CONCATENATE(D1,E1)

Referencing a Named Range

We can refer the Named Ranges in Excel using Formula. Name of Range should follow the = operator to refer a named range in Excel. The following Formula refer the named range called ‘TotalSales’.

=TotalSales

The will display the Cell value which is named as ‘TotalSales’.

The following examples shows you, how to refer the range of cells in Excel. The Range (‘Sales Column’) is referred in SUM function to return the total value of ‘Sales Column’ Named Range.

=SUM(‘Sales Column’)

Showing Cell values on a Shape

Follow the below instructions to display the cell contents on a Shape.

  • Select the Shape
  • Click on the Formula bar
  • Enter the = (assignment) operator
  • And put required Cell Address (For example: =$A$3)

Showing Cell value in Chart Title

Follow the below instructions to display the cell contents in Chart Title.

  • Select the Chart which you want to display the Cell Value
  • Go to ‘Chart Design’ Tab in the Ribbon
  • And Show the Chart Title from Chart Elements
  • Click on Chart Title of the Selected Chart
  • Click on the Formula bar
  • Enter the = (assignment) operator
  • And put required Cell Address (for example: =Sheet2!$K$8)

Share This Story, Choose Your Platform!

13 Comments

  1. Ray July 29, 2022 at 10:47 pm - Reply

    I’d like to learn a formula that will identify a character, for example “_”, and return the contents of the next cell. The results are pulled from a data sheet and compiled into a list/column.

    For example, if d:d contains “_” show contents of f:f

    Any help would nmbe appreciate!

    • PNRao September 11, 2022 at 6:51 am - Reply
      =IF(COUNTIF(D1,"*_*"),F1,"")
      
  2. Ian October 5, 2022 at 4:17 am - Reply

    How would you format a cell to show the content of another selected cell in the same sheet?

    I’m thinking of a text search function that actively translates the content of a selected cell in a column, maybe using the Googletranslate function, but I’m currently stuck on the first part of getting the content.

  3. Miki February 22, 2023 at 7:20 pm - Reply

    Hello!
    I have a cell that contains the address of another cell. How can I get the value of this cell?

    • PNRao February 27, 2023 at 3:13 am - Reply

      Let’s say your Cell B1 contains the address of Cell A1, and you want to get the value of Cell A1?

      =INDIRECT(B1)
      
  4. wahid July 26, 2023 at 7:17 am - Reply

    how to pupulate sheet 1 A field data based on sheet 2 table – example Sheet 1 having country, name, sheet 2 is having country name with values in it
    i want to fill Sheet 1 A field data referring sheet 2 table

    • PNRao July 27, 2023 at 8:23 am - Reply

      Hi, You can use the VLookUp to display the values from another Sheet. Please see the below formula:

      =VLOOKUP(A2,Sheet2!A:B,2,FALSE)
      
      
      					
  5. abhay August 4, 2023 at 11:08 pm - Reply

    i need a formula that having minimum and maximum condition and get result as minimum or maximum cell adjacent cell value

  6. Vitālijs Dubra September 27, 2023 at 6:56 pm - Reply

    Hi! In my Excel 2021 I can use reference to range in one cell to see data from all cells in range ( Example: = A2:A7). These data i can copy and paste as Values in other location for usage.
    However in other PC I see only data from one cell. Is it specific for Excel version or Excel Options?

  7. Tony December 12, 2023 at 1:08 pm - Reply

    how do I display contents of a cell in a sheet of one excel file to a cell of a sheet in 2nd excel file

    • PNRao March 28, 2024 at 1:18 pm - Reply

      Here is an Example to display content from Range A1 form Sheet1 in SourceWorkbook1:

      ='[SourceWorkbook1.xlsx]Sheet1'!$A$1
      
      Thanks
      PNRao
  8. David February 15, 2024 at 9:07 pm - Reply

    Hi! How can I “print” values, let’s say in cell “A1”, and than storage that value in cell “B1” erasing the value in cell “A1”? I didn’t find anything about this automation.

    • PNRao March 28, 2024 at 1:31 pm - Reply

      You can use VBA, please describe your requirement clearly.
      Thanks
      PNRao!

Leave A Comment