Hello I am having trouble trying to export a coefplot I have made. The graphs show up in stata but Im failing to save them into a folder so I can place them into an excel sheet. My question is, what would the code be to both save the graph, and then export into my excel file
graph export Output/logistic_Results/`state'.png
putexcel set Output/logistic_Results, modify sheet("`StateLabel'")
putexcel B4= "`StateLabel'.png"
graph export Output/logistic_Results/`state'.png
putexcel set Output/logistic_Results, modify sheet("`StateLabel'")
putexcel B4= "`StateLabel'.png"
Comment