Spent some time researching and I cannot figure out whats wrong.
Security Settings in both files are correct. The sub being called is public & in a normal module.
The error states "Cannot run macro blah blah blah...."
Code:
Private Sub this()
Dim xl As Object
Set xl = CreateObject("Excel.Application")
xl.Visible = True
xl.Workbooks.Open "pathToFile" & "\" & "Dig IT.xlsm", True, False
xl.Run "ThisWorkbook.Module3"
Set xl = Nothing
End Sub