I need to change non missing observations into "X" and keep missing as '.'
I used the below code
data fin(drop=i);
set qs2;
array nvar(i) _numeric_;
do i= 1 to dim(nvar);
if nvar(i) ne . then nvar(i)= 'X';
end;
run;
But as the values are numeric and i am converting them as character i get an error.
Can there be any other way in arrays to do
Hello,
You can use a format :
proc format;
value X .='.'
other='X';
run;
proc print data=sashelp.class;
var _NUMERIC_;
format _NUMERIC_ X.;
run;
Hello,
You can use a format :
proc format;
value X .='.'
other='X';
run;
proc print data=sashelp.class;
var _NUMERIC_;
format _NUMERIC_ X.;
run;
Do not however, that doesn't "change" the results, only displays them differently. If you really want to "change" the data, then convert the column to character and then the replace should work fine
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.