Hello,
After running my do file, I want to export the manipulated data set into excel, however I want the excel file to be read only. Is there a way to do that through the command line in stata? This is the code I have:
Thanks!
After running my do file, I want to export the manipulated data set into excel, however I want the excel file to be read only. Is there a way to do that through the command line in stata? This is the code I have:
Code:
export excel "$out\mainpulated_data.xlsx", sheet("master") firstrow(variables) replace
Comment