I would like to see Stata supporting the import and export to OpenDocument Spreadsheet format (https://en.wikipedia.org/wiki/OpenDocument).
-
Login or Register
- Log in with
program foo
// version intentionally omitted or lowest supported
if (c(stata_version) < 18) {
local version = floor(c(stata_version))
foo_`version' `0'
exit
}
version 18
...
end
ssc install foo foo ...
version 16 : table ... , replace
help version
help table_16
Comment