I am trying a new set of code:
The code keeps stoping on the Set src = Workbooks line
Any Ideas?
Code:
Sub GetDataClosedBook()
Dim src As Workbook
'location of the file and data to copy
Set src = Workbooks.Open("C:\\Documents\Data Calc Formulas v 1.13b.xlsb", True, True)
'bring to this workbook
ThisWorkbook.Activate
Worksheets("RawData").Range("A1:S29,089").Formula = src.Worksheets("C:\Documents\Raw Reports - All Of Them - xxxx Copy.xlsx").Range("A1:C2").Formula
End Sub
'https://www.youtube.com/watch?v=5as4AfpqWBA
The code keeps stoping on the Set src = Workbooks line
Any Ideas?