What you get with your expression F = intercept + Var1*b1 + ... is Logit(p) = Ln(p/(1-p)). You want to estimate p = exp(F)/(1+exp(F)) = 1 / (1+exp(-F)). PG
... View more
If you have, say, 2 variables to summarize : VAR myVar1 myVar2; OUTPUT out=myOutputDataset NMISS(myVar1 myVar2) = numberMissing1 numberMissing2; PG
... View more