Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

copy frm range to range 1

Status
Not open for further replies.

max1565

Technical User
Dec 16, 2002
57
US
I am trying to copy one range to another, but I keep getting the following message "object doesn't support this method or property".

Can someone tell me what i am doing wrong?

Thanks

Sub Extract_RCRdata() 'extracts RCRdata for month/year specified
Range("commercial").CopyTorange ("RCR_out"), _
Unique:=False
Application.Goto Reference:="R1C1"
End Sub
 
Sub Extract_RCRdata() 'extracts RCRdata for month/year specified
Range("commercial").Copy Destination:=Range("RCR_out")
Range("A1").Select
End Sub

Peace! [peace]

Mike

Never say Never!!!
Nothing is impossible!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top