View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Mike H. Mike H. is offline
external usenet poster
 
Posts: 471
Default copy paste methods.....

'Select your range then do this:
Selection.Copy

'then go to where you wish to paste and do this:
ActiveSheet.Paste

HTH