Thread: Pasting Data
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Don Guillett[_4_] Don Guillett[_4_] is offline
external usenet poster
 
Posts: 2,337
Default Pasting Data

Sub PASTEIT()
ActiveCell = [B1]
End Sub


--
Don Guillett
SalesAid Software

"Todd Huttenstine" wrote in message
...
Is there an easier way to write the below code?

Worksheets(1).Range("C3").Select
ActiveSheet.Paste

I tried to do this and it failed.
Worksheets(1).Range("C3").Paste

Thanx

todd huttenstine