When I export the stata results to excel the values are rounded off. I need the data unchanged with all the decimals. It would be a lot of help if anyone could help me with this issue.
Thank you for your time
Thank you for your time
putexcel set "mypi.xlsx", replace putexcel A1 = "Default format" putexcel B1 = (c(pi)) putexcel A2 = "Using nformat" putexcel B2 = (c(pi)) , nformat(0.##) // NB: this is Excel-specific formatting codes putexcel save
Comment