I am calling a python script from VBA with the following:
Sub python_call()
Application.COMAddIns("DataNitro.DataNitro").Object.RunScript ("test.py")
'do some other stuff
End Sub
test.py
takes a while to run so I want VBA to wait before running the remaining code. Is there a way to do that other than Application.Wait
?