View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Mark Kubicki Mark Kubicki is offline
external usenet poster
 
Posts: 89
Default convert to value

is there a function to convert the contents of a cell from its formula to
the result of the formula


(similar to:)
Range("A9:F100").Select
Application.CutCopyMode = False
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False

only in a more direct manner?


thanks in advance,
-mark