Good evening, I have tested two different codes and when all the values of a variable are missing, we get the warning message. data have; infile datalines delimiter=','; input A B C; datalines; 1, ,3 3, ,4 3, ,5 ., ,7 2, ,3 6, ,. .,1 ,2 ; run; proc stdize data=have reponly out=want missing=0; var _numeric_; run; The following code is not working because all the values of B are missing; data have; infile datalines delimiter=','; input A B C; datalines; 1, ,3 3, ,4 3, ,5 ., ,7 2, ,3 6, ,. .,.,2 ; run; proc stdize data=have reponly out=want missing=0; var _numeric_; run;
... View more