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

Hi,

I was reading Scan function on support site (SAS(R) 9.2 Language Reference: Dictionary, Fourth Edition) . It is written that, In a DATA step, if the SCAN function returns a value to a variable that has not yet been given a length, then that variable is given a length of 200 characters. If you need the SCAN function to assign to a variable a word that is longer than 200 characters, then you should explicitly specify the length of that variable.

But when I am executing the below data steps

data test1;

title = 'Writing as much Macros as possible so that they can be used in other modules as well.';

word=scan(title,1,' ');

run;

data test2;

word=scan('Writing as much Macros as possible so that they can be used in other modules as well.',1,' ');

run;

The length of variable word in both the data sets is 85 .

I just need to understand why is the length not 200 and 85.

1 ACCEPTED SOLUTION

Accepted Solutions
data_null__
Jade | Level 19

You need to look at the documentation for the version of SAS that you are actually using.

In a DATA step, if the SCAN function returns a value to a variable that has not yet been given a length, that variable is given the length of the first argument. If you need the SCAN function to assign to a variable a value that is different from the length of the first argument, use a LENGTH statement for that variable before the statement that uses the SCAN function.

View solution in original post

3 REPLIES 3
data_null__
Jade | Level 19

You need to look at the documentation for the version of SAS that you are actually using.

In a DATA step, if the SCAN function returns a value to a variable that has not yet been given a length, that variable is given the length of the first argument. If you need the SCAN function to assign to a variable a value that is different from the length of the first argument, use a LENGTH statement for that variable before the statement that uses the SCAN function.

NikhilKhurana
Calcite | Level 5

My bad, I am using SAS 9.4 but was looking at SAS 9.2 documentation.

Thanks for pointing that out. Smiley Happy

RW9
Diamond | Level 26 RW9
Diamond | Level 26

"you should explicitly specify the length of that variable"

IMO you should always explicitly state the length of a variable.  Otherwise you may get differing results if the data changes.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 1312 views
  • 0 likes
  • 3 in conversation