Is there any way to convert a variable containing zero observations to numeric?
A variable that has zero observations? Delete the variable, then create a new variable that is numeric of the same name.
data want;
set have(drop=variable);
length variable 8;
run;
A variable that has zero observations? Delete the variable, then create a new variable that is numeric of the same name.
data want;
set have(drop=variable);
length variable 8;
run;
Nearly 200 sessions are now available on demand in the Innovate Hub.
Watch Now →SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.