Hello, Is it possible to use the Array and scan together. With the current project I'm working on, I'm currently using the scan function to pull individual variable from a column. For example, here an example of a code I wrote out:
data test;
set temp;
CODE1=scan(CODE,1, ' ');
CODE2=scan(CODE,2,' ');
.
.
.CODE27=scan(CODE,27,' ');
run;
Is it possible to used an 'array' function to simplied this code. Thanks.
Of course, it is possible
data test;
set temp;
array c code1-code27;
do i = 1 to dim(c);
c{i} = scan(CODE, i, ' ');
end;
drop i CODE;
run;
Of course, it is possible
data test;
set temp;
array c code1-code27;
do i = 1 to dim(c);
c{i} = scan(CODE, i, ' ');
end;
drop i CODE;
run;
The code appears to work, but the variable (CODE) is a character variable and I'm getting the error message mentioning numeric data.
Nevermind. I got it to work now. thanks to everyone help.
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.