Can't I just use this solution? https://blogs.sas.com/content/iml/2017/01/09/ods-output-any-statistic.html Use ODS TRACE ON (or the SAS documentation) to find the name of the ODS table that contains the statistic that you want. Use the ODS OUTPUT statement to specify the table name and a data set name. The syntax is ODS OUTPUT TableName=DataSetName. Then run the procedure to generate the table. Read the data set to obtain the value of the statistic. I know that proc surveylogistic does many things but I think in my context, all I need really is to have some way to store the parameter estimates so that they can be read in the final step of multiple imputation (by proc mianalyze, which I have)
... View more