Objective:
I am using Rexcel to run the ETS model. I want to automate the below mentioned code through VBA.
Issue:
The issue being faced is that vba does not execute the code after the second double quote i.e. in the ETS code mentioned below, the code is executed only till the end of the second double quote.
“etsz <- ets(zz,model="ZZZ")
etszP <- forecast(etsz,h=442)
i.e the code is executed till only etsz <- ets(zz,model="
and not etsz <- ets(zz,model="ZZZ")
How can the entire code be made to run in vba in order to automate the process ?