Hi,
I have always copied a range by using the select cell. But then I learned a
really easy way to do this with Set
Set Rng1 = Sheets("...
Set Rng2 = Sheets("...
Rng1.copy Rng2
Ok is there a way to do this but only paste the values?
Thanks for your help
Duke Carey - 20 Aug 2007 19:52 GMT
rng1.copy
rng2.PasteSpecial xlpastevalues
> Hi,
>
[quoted text clipped - 9 lines]
>
> Thanks for your help
Gord Dibben - 20 Aug 2007 20:12 GMT
Rng2.Value = Rng1.Value
Gord Dibben MS Excel MVP
>Hi,
>
[quoted text clipped - 9 lines]
>
>Thanks for your help