Very simple.
Where A1 holds the formula, A2 will become the result. You can also copy the formula then paste special then select values. to do this in macro you do:![]()
Range("A2").value = Range("A1").value
![]()
range("A1:A5").Copy Range("B1").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False
Bookmarks