I need to close a project, but most people cannot configure VBA to change paths (path made the change).
Sub RunPython_Click()
Dim objShell As Object
Dim PythonExe, PythonScript As String
Set objShell = VBA.CreateObject("Wscript.Shell")
PythonExe = Range("B13").Value
PythonScript = Range("B14").Value
objShell.Run PythonExe & " " & PythonScript
End Sub
I'm doing this so people don't have to go into the VBA configuration to make the script path changes.

{}button. What is the specific problem you're having with this task? In the event either of those paths might contain spaces, you should quote the paths in the call toRunPythonExe = ThisWorkbook.Worksheets("Settings").Range("B13").Value