View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Simon[_2_] Simon[_2_] is offline
external usenet poster
 
Posts: 89
Default Copying with .Value

On Aug 11, 12:14*pm, Mike H wrote:
Maybe

Range("latest").Select
ActiveCell.Copy
ActiveCell.Offset(0, 1).PasteSpecial xlPasteValues

Mike



"Simon" wrote:
Cells.Find("latest").Select
Selection.Copy Destination:=ActiveCell.Offset(0, 1)


I wish to use only the value of the cell.


What is wrong with


Cells.Find("latest").Select
Selection.Copy Destination:=ActiveCell.Offset(0, 1)


Thanks- Hide quoted text -


- Show quoted text -


But am I using the clipboard in doing this?