I found a script that removes formulas from all sheets in my file, and leaves values and formatting. I would like to add some code that allows me to keep some formula in certain tabs + ranges (I might want to keep formulas in multiple tabs and ranges so please build that into the solution or show how I could add another range).
Sub Saveasvalue()
Dim wsh As Worksheet
For Each wsh In ThisWorkbook.Worksheets
wsh.Cells.Copy
wsh.Cells.PasteSpecial xlPasteValues
Next
Application.CutCopyMode = False
End Sub