Most of Excel users have sometimes changed the calculated value to static value, I bet. This is easy.
ISFORMULA formula is checking whether the value is calculated by a formula or a static value.

Number 2 in D3 is a calculated value, ISFORMULA returns the value TRUE. To make it static 2
Activate the cell D3.

Select Copy or press control + C.

Then take paste values and press enter to empty the clipboard.

Now ISFORMULA also finds that it is not calculated anymore.
If you want to do the process above, create a macro.
Take view – macros -record macro. Activate Use relative references.


Store the macro in your personal workbook. Then the macro is available in every Excel workbook. Add also a shortcut key.
Repeat the steps above to copy and paste as values.
After the steps just stop recording.

Check the VBA code from the developer-visual basic. It should look like this.
Sub Own_name()
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues
ActiveSheet.Paste
Application.CutCopyMode = False
End Sub
Instead of recording macro, you can also copy the code above.
To run macro quickly, you can add a shortcut key. Now even a simple task has been automated with macro. If you repeat copy-paste as values several times a day, like I do, macro with shortcut key will save your time.


