View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson[_3_] Dave Peterson[_3_] is offline
external usenet poster
 
Posts: 2,824
Default Paste Special atop original sheet in Macro



With Worksheets("sheet1").UsedRange
.Copy
.PasteSpecial Paste:=xlPasteValues
End With


or

with worksheets("sheet1").usedrange
.value = .value
end with



"MACRE0 <" wrote:

There must be an easy way to copy the entire active sheet and paste it
atop itself. So far all I've been able to do is paste it to another
sheet with a specified range (don't wish to use a1:iv65536) or copy all
sheets with any range to a new sheet. I suppose I could modify them to
fit my needs, but I'd really appreciate some help here. Especially
since it should be easier that the first two I mentioned. Thank you in
advance. -MACRE

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


--

Dave Peterson