Dear All,
a syntax error has derailed my normal Excel production leaving the -putexcel- facility in a locked out state so that I can neither create a new file, nor terminate creation of the previous:
Stata/SE 17.0 for Windows (64-bit x86-64)
Revision 14 Jun 2021
Is this a known issue?
The following is a minimal code example to reproduce the situation:
Thank you, Sergiy
a syntax error has derailed my normal Excel production leaving the -putexcel- facility in a locked out state so that I can neither create a new file, nor terminate creation of the previous:
Code:
. clear all
. putexcel set "C:\temp\delme.xlsx"
Excel file open
Type putexcel save to save the existing open file. Type
putexcel describe
to see current settings.
r(198);
. putexcel describe
-----------------+-------------------------
Filename | C:/temp/spdoc_LCN.xlsx
Filetype | xlsx
Write mode | modify
Sheetname | Argentina
Locale | UTF-8
Open file handle | yes
. putexcel save
file handle not found
r(604);
Stata/SE 17.0 for Windows (64-bit x86-64)
Revision 14 Jun 2021
Is this a known issue?
The following is a minimal code example to reproduce the situation:
Code:
clear all
version 17.0
putexcel set "C:\temp\demo.xlsx", open sheet("demo") replace
putexcel A1="Test"
putexcel B3=dummy // intentional error here
putexcel save
// END OF FILE
Thank you, Sergiy

Comment