BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.

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.

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

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;
PG

View solution in original post

3 REPLIES 3
PGStats
Opal | Level 21

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;
PG
PatriciaEilerman
Calcite | Level 5

The code appears to work, but the variable (CODE) is a character variable and I'm getting the error message mentioning numeric data.

PatriciaEilerman
Calcite | Level 5

Nevermind. I got it to work now. thanks to everyone help.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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!

Register now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 5032 views
  • 0 likes
  • 2 in conversation