How to replace formulas with results or value in Excel?
Supposing you need to replace formulas with their calculated values in cells, of course you can replace them one by one manually. However, it will waste a lot of time if you are going to replace many ones. Are there easy ways? Yes, the following tricky ways will help you easily replace formulas with their calculated values in selections quickly:
Replace formulas with results or values with Paste Special command
Replace formulas with results or values with VBA
Replace formulas with results or values with Kutools for Excel
Office Tab: Enable Tabbed Editing and Browsing in Office, Just Like Chrome, Firefox, IE 8/9/10. Read more...
Classic Menu for Office: Bring Classic Menus and Toolbars of Office 2003/XP/2000 Back to Office 2007, 2010 and 2013. Read more...
For example, I have a range of formulas, and now I need to replace the formulas with the cell values, as following screenshot shows:
![]() |
![]() |
Replace formulas with results or values with Paste Special command
The Microsoft Excel's Paste Special command can help you remove all formulas but remain calculated values in cells.
Step1: Select the range that you will work with.
Step2: Press the Ctrl + C keys to copy the selected cells.
Step3: Right click the selected cells, and click the Paste Values button under Paste Options.

Now you have all formulas in the selection replaced with their calculated values at one time.
Replace formulas with results or values with VBA
For experienced users of Microsoft Excel, VBA macro is another good choice to replace formulas with calculated values quickly.
Step1: Hold down the Alt + F11 keys in Excel, and it opens the Microsoft Visual Basic for Applications window.
Step2: Click Insert > Module, and paste the following macro in the Module Window.
VBA for replacing formulas with calculated values:
Sub Range_Example_1()
With Range("D2:D6")
.Cells.Copy
.Cells.PasteSpecial xlPasteValues
.Cells(1).Select
End With
Application.CutCopyMode = False
End Sub
Step3: Press the F5 key to run this macro. Then all formulas in the range are replaced with their calculated values in the original range.
Note: Please replace the D2:D6 with right range position according to your needs.
Replace formulas with results or values with Kutools for Excel
If you have Kutools for Excel, its Displayed To Actual tool can help you quickly convert the value or formula in selected cells to the way they are formatted.
Kutools for Excel includes more than 120 handy Excel tools. Free to try with no limitation in 30 days. Get it Now.
Step1: Select the range that you will work with.
Step2: Click the Kutools > To Actual, see screenshot:

Then the formulas in the selection are converted to the displayed values.
For more detailed information about this feature, please visit Displayed To Actual.








