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

At the end of an iterated do loop such as

do I= 1 to 8;

you find the value of I to be one more than the maximum value (unless you have some code to skip out of the loop early).

 

So in your code (slightly reformatted for legibility)

32 do i=1 to 8;
33    mindt = min(of dat[*]);
34    maxdt = max(of dat[*]);
35    if res{i}^='0' then _res{i}=i;
36 end;
37
38 if _res{i}=. then do;

line 38 uses the value of the index variable I after ending the loop and will have a value of 9. So the array index is out of range as you define the array _res to have 8 elements. Line 44 will have the same issue.

 

Note that you will get the exact same value for

33 mindt = min(of dat[*]); 
34 maxdt = max(of dat[*]); 

So these really do not need to be in any sort of loop.

 

 

skom1
Calcite | Level 5

Got it. Thank You very much

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 16 replies
  • 1065 views
  • 1 like
  • 7 in conversation