View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Herve_Rob[_2_] Herve_Rob[_2_] is offline
external usenet poster
 
Posts: 1
Default Converting a formula to its value


try this:
if your formula are in cell F56 to F9

Sub Macro1()
Range("F6:F9").Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks:=False, Transpose:=False
Range("F6").Select
Application.CutCopyMode = False
End Sub


--
Herve_Rob
------------------------------------------------------------------------
Herve_Rob's Profile: http://www.excelforum.com/member.php...o&userid=35204
View this thread: http://www.excelforum.com/showthread...hreadid=549684