parry
MrExcel MVP
- Joined
- Aug 20, 2002
- Messages
- 3,355
Hi, Im wanting to copy a range and paste as a link.
The Excel Macro recorder would create something like this...
How can you paste a link without first selecting the destination cells? Pasting a link is only available with a sheet object so how do I include the destination range? There is no link argument for the copy method.
The Excel Macro recorder would create something like this...
Code:
Range("A1:A3").Select
Selection.Copy
Range("D1").Select
ActiveSheet.Paste Link:=True
How can you paste a link without first selecting the destination cells? Pasting a link is only available with a sheet object so how do I include the destination range? There is no link argument for the copy method.