Save Workbook without Formulas

Last Updated: October 04, 2023
puneet-gogia-excel-champs

- Written by Puneet

In Excel, if you want to save a workbook without formulas, you have three different methods which you can use. And in this tutorial, we will discuss all these methods in detail and learn them to use step by step.

Alert – I suggest you create a workbook backup before using any of these methods. So that if you want to get the formulas back, you can use that file.

Change All the Formulas from the Workbook into Values (Paste Special)

The following is the easiest method to do that.

  1. Click on the top left of the rows and columns window to select the entire sheet. Or you can also use the keyboard shortcut Ctrl + A.
    1-save-workbook-without-formulas
  2. After that, use the keyboard shortcut Ctrl + C to copy all the cells from the worksheet. Or you can also right-click and click on the “Copy” option.
    2-click-on-copy-option
  3. From here, again, open the right-click option and then go to Paste Special > Value. Or you can also use the keyboard shortcut Alt > H > V > V.
    3-go-to-paste-special-value
  4. In the end, select a single cell to de-select the entire worksheet.

With this method, you can convert formulas into values for a single sheet, and if you have more than one worksheet, in that case, you need to go to each worksheet one by one and then change formulas into values.

And once you do that, you can save the workbook.

Use a VBA Code to Save a Workbook without Formulas

You can use the below code:

Sub Formulas_into_Values()
Dim ws As Worksheet
For Each ws In ThisWorkbook.Worksheets
    Cells.Copy
    Cells.PasteSpecial Paste:=xlPasteValues
Next ws
End Sub

The above code will run a loop to all the worksheets in the workbook and convert all the formulas into values. And after that, you can easily save that workbook without the formula.

To use this code:

  • Open the Visual Basic Editor.
  • Insert a new module.
  • Paste the code into the code window.
  • Click on the run button to run the code.

Otherwise, you can check other ways from this link.

Save Workbook in CSV Format Without Formulas

Alert – For using this method, creating the file backup is necessary.

  • First, click “File Tab”, go to “Save As”, and then ‘Browse.
  • From the Save As Dialog box, select “CSV Comma Delimited” from the “Save as type”.
  • In the end, click OK.
save-csv-format-workbook-without-formulas

When you save a file in CSV format, it automatically removes formulas and formatting from the workbook.

Alert – When you save a workbook in CSV format, it removes the formula and the formulas when you add them again.