I have been using the following simple macro code to convert formulas to values (for a selection of just a single, contiguous area):
Selection.Copy
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Application.CutCopyMode = False
I want to extend this for a multi-area selection (not hard I think, using the Areas collection), but my question is whether there’s a better (more fundamental?) way to convert cell contents from formulas to their resultant values.
thanks