is there any real difference (if I'm only worrying about values) between
and
?
Code:
With Range("A1:A10")
.Copy
.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End With
and
Code:
With Range("A1:A10")
.Formula = .Value
End With
?