SAS Programming

DATA Step, Macro, Functions and more
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-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

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
  • 4575 views
  • 0 likes
  • 2 in conversation