View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Arthur[_3_] Arthur[_3_] is offline
external usenet poster
 
Posts: 6
Default Copy & PasteSpecial

Range("A1").Copy
Range ("C1:C5").PasteSpecial (xlPasteValues)

This copies and pastes like I want, but it leaves
the range C1:C5 selected, and cell A1 has the blinking
dotted outline to show it is on the clipboard ready to be
pasted. Is there a way to copy and paste values without
these secondary effects?

Art