I am trying to start a R-Script by using a button in Access. I tried this VBA code (I never learned VBA, just tried to help myself) but nothing happens. Maybe someone can help me.
Private Sub RunRscript()
Dim path As String
path = "D:\programme\r\R-4.0.1\bin\x64\R.exe G:\data\data_v25\backgroundv\baclgroundv_Access.R"
Call shell(path, 1)
End Sub