Dolemitefunk
New Member
- Joined
- Oct 12, 2010
- Messages
- 47
So I have this section of code
Set master = ActiveWorkbook
Set factors = master.ActiveSheet
Dim master As Workbook
Dim factors As Worksheet
Set Dest= Workbooks.Open("U:\Dolemitefunk\Testing\Test 1.xls")
Set DestSheet= Dest.Worksheets("Sheet 1")
factors.Range("C5:C66").Copy Destination:=DestSheet.Range("H14:H75")
run;
How would I get this to instead of copy and paste the cells, to link the "datasheet" to the active workbook?
Any help would be greatly appreciated
Set master = ActiveWorkbook
Set factors = master.ActiveSheet
Dim master As Workbook
Dim factors As Worksheet
Set Dest= Workbooks.Open("U:\Dolemitefunk\Testing\Test 1.xls")
Set DestSheet= Dest.Worksheets("Sheet 1")
factors.Range("C5:C66").Copy Destination:=DestSheet.Range("H14:H75")
run;
How would I get this to instead of copy and paste the cells, to link the "datasheet" to the active workbook?
Any help would be greatly appreciated