Range object global failure

O

Otto Moehrbach

Excel 2002, WinXP
I have a "With/End With" statement such as:
With Sheets("One")
Range(Range("CellName"), Range("CellName").Offset(65)).Copy_
..Range(DateCell.Address).Offset(8)
End With
The underline character is just for this message.

I was getting the following error on the above statement until I put the
entire statement on one line. I had been putting "Copy _" and continuing on
the next line.
get Run-time error '1004'
Method 'Range' of object '_Global' failed

Now my user is getting this error with my code.

"CellName" is the range name of a cell in another sheet.
DateCell is a single-cell range variable. The parent sheet is yet another
sheet. I'm using just the cell address of this cell and pasting the data to
this address in the "One" sheet.

What is wrong with the above Copy/Destination statement? Thanks for your
help. Otto
 
G

Guest

I assume you copying to Datacell so you need to add " destination:=" as below

Range(Range("CellName"), Range("CellName").Offset(65)).Copy_
destination:=Range(DateCell.Address).Offset(8)

HTH
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top