View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Rodrigo Ferreira Rodrigo Ferreira is offline
external usenet poster
 
Posts: 79
Default Replacing formulas with its value

Try this:

Cells.Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, _
Operation:=xlNone, _
SkipBlanks:=False, _
Transpose:=False
Application.CutCopyMode = False

Rodrigo Ferreira


"Marcus A" <Marcus escreveu na mensagem
...
I wanted to know if there was a macro that would replace all formulas in a
worksheet with their respective value only.

Thanks.