By using listi.net you agree to our cookie policy, We and our partners operate globally and use cookies, for multiple purposes

listi.net

 


ConvertToValues - Coverts formulas to values, can be used to optimize

Sub ConvertToValues()
'Version: 1.000
'Purpose: This routine will convert the sheet to all values
'
    Cells.Select
    Selection.Copy
    Range("A1").Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
End Sub

blog comments powered by Disqus