Putting Result of a Formula in Another Cell in Excel: 4 Common Cases

Method 1 – Putting Formula Result in Another Cell Mentioning Cell Reference

Steps:

  • Select a cell to put the formula result (i.e.D12).
  • Input the following formula:
=D9

I mentioned the D9 cell, which contains a formula, to have the result and its formula in cell D12.

  • Press ENTER to have the desired result.

Excel Putting Result of a Formula in Another Cell


Method 2 – Applying Define Name Command to Transfer Formula Result

Steps:

  • Select the Formulas tab.
  • Go to Define Name from the ribbon.

The New Name box will appear.

  • Input a suitable name in the Name section (i.e. Total_Salary).
  • Set the cell of a worksheet from where you want to duplicate the result of a formula (i.e. D9 from the Define Name worksheet).
  • Press OK.

Excel Putting Result of a Formula in Another Cell

  • Go to the cell where you want the result with the formula (i.e. D12).
  • Write the following formula in that cell:
=Total_Salary

I mentioned Total_Salary, which will return the defined result with the formula.

  • Hit ENTER button and finish the process.

Excel Putting Result of a Formula in Another Cell

The formula result is in another cell. I believe you have found this to be another cool way to put the result of a formula in another cell.


Method 3 – Applying Paste Values to Put Result of a Formula

Steps:

  • Select the cell the result you want to put in another cell (i.e. D9).

Excel Putting Result of a Formula in Another Cell

  • Right-click on the mouse and click on Copy.

You can press CTRL + C to Copy the result.

  • Pick a cell where you want to put the result (i.e. D12).

Excel Putting Result of a Formula in Another Cell

  • Right-click on the mouse.
  • Select Paste Value from the available options.

Have the result of a formula in another cell.

Excel Putting Result of a Formula in Another Cell

You can modify the result according to your needs.


Method 4 – VBA Code to Put Result of a Formula in Another Cell

Steps:

  • Choose the Developer tab.
  • Pick Visual Basic from the ribbon.

  • Click on Insert.
  • From the available options, select Module.

Excel Putting Result of a Formula in Another Cell

  • Write the following Code:
Sub PutResult()
    ActiveSheet.Range("D12").Value = ActiveSheet.Range("D9").Value
End Sub

We mentioned a Sub Procedure named PutResult. The following worksheet returns the result of the D9 cell in cell D12 with the formula.

  • Press the RUN button to apply the code.

See the output on the mentioned cell with the result and formula.

Excel Putting Result of a Formula in Another Cell

 


Download Practice Workbook


Related Articles


<< Go Back to Convert Formula to Value in Excel | Excel Formulas | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Naimul Hasan Arif
Naimul Hasan Arif

Naimul Hasan Arif, a BUET graduate in Naval Architecture and Marine Engineering, has been contributing to the ExcelDemy project for nearly two years. Currently serving as an Excel and VBA Content Developer, Arif has written more than 120 articles and has also provided user support through comments His expertise lies in Microsoft Office Suite, VBA and he thrives on learning new aspects of data analysis. Arif's dedication to the ExcelDemy project is reflected in his consistent contributions and... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo