Hello,
I am sure that there is no error in the following:
But the copy fails.
As a test I tried this:
...and it works just fine. Which leads me to wonder if there is something inefficient about using the .Address method with a large range like this.
Thanks,
David
I am sure that there is no error in the following:
Code:
Dim Loc as Range
Set Loc = Range("worksheet!named_range").Find(What:=name)
Range(Loc.Offset(8001,0).Address & ":" & Loc.Offset(9900,0).Address).Copy
mainSheet.Range("I201")
As a test I tried this:
Code:
mainSheet.Range("I201").Value = Loc.Offset(8001,0).Value
Thanks,
David