A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi Hans,
Many thanks.
You macro codes work very well.
Low
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
I have a large file of 450 MB with 15 to 20 tabs.
Each tabs is a table link to a data page.
Is there any Macro code that could convert all the formula cells into values keeping all the formatting in the shortest possible time ?
Thank you in advance.
Low
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Hi Hans,
Many thanks.
You macro codes work very well.
Low
Here is such a macro:
Sub Formulas2Values()
Dim wsh As Worksheet
For Each wsh In Worksheets
With wsh.UsedRange
.Value = .Value
End With
Next wsh
End Sub