View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Scottmk[_11_] Scottmk[_11_] is offline
external usenet poster
 
Posts: 1
Default Copy Sheet w/out Formula's, JUST values

don't know if this helps, but I just recorded a macro where I copied
"paste values" to a new sheet. The result :

Sub Macro1()
'
' Macro1 Macro
' Macro recorded 7/20/2004 by Scott
'

'
Range("C8:C16").Select
Selection.Copy
Sheets("Sheet2").Select
Range("C7").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone
SkipBlanks _
:=False, Transpose:=False
End Sub

I think that the key to your problem is the Paste value

--
Message posted from http://www.ExcelForum.com