Apologies for a probably a very simple question, but I have tried reading docs and examples and can not see how to do this.
I want to use -putexcel- to write out the observations of some variable.
I have set up my file with this
And have tried the following 3 attempts to write out the observations of the variable "Price"
But none of these work. I get the error message
Any help appreciated, thanks for reading.
* http://www.stata.com/manuals14/pputexcel.pdf
I want to use -putexcel- to write out the observations of some variable.
I have set up my file with this
Code:
putexcel set myresults, sheet("out1") sysuse auto
Code:
putexcel A2 = price
Code:
putexcel A2 = list price
Code:
mkmat price, matrix(matprice) putexcel A2 = matrix(matprice)
But none of these work. I get the error message
Code:
file myresults.xlsx could not be saved r(603);
* http://www.stata.com/manuals14/pputexcel.pdf
Comment