I was trying to execute python code from excel macro. But error is displayed as "Run-time error '70': Permission denied.". Code is simple as below.
Sub RunPython2()
Dim objShell As Object
Dim PythonExe, PythonScript As String
Set objShell = VBA.CreateObject("Wscript.Shell")
PythonExe...