Transfer data by defined name
Hi Choo,
Try:
'=============
Public Sub Tester()
With ActiveWorkbook
.Sheets("Sheet1").Range("abc").Copy Destination:= _
.Sheets("Sheet2").Range("C3")
End With
End Sub
'<<=============
---
Regards,
Norman
"choo" wrote in message
...
Hello,
How do I copy a range of data (defined as "abc") to another worksheet
(start
from cell c3, for example) in the same workbook by the Defined Name "abc".
Thanks.
|