Hi Steve, ODS trace on; ods output ParameterEstimates=a****User defined output dataset name; ods output oddsratios=b****User defined output dataset name; proc surveylogistic data =have; strata STRATUM; weight WEIGHT; class x1(param=ref ref = "1") x2(param=ref ref = "1") x3(param=ref ref = "1") x4(param=ref ref = "1") x5(param=ref ref = "1") x6(param=ref ref = "1") x7(param=ref ref = "1") x8(param=ref ref = "1") x9(param=ref ref = "1") x10(param=ref ref = "2"); model Y (event='1') = x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 x11 x12 x13 x14 x15; run; ODS output off; ODS trace off; Check newly created datasets a, b. You will find Wald statistics. Best Regards, Sri.
... View more