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

Hello,

 

I don't understand why my first program works and the second no (only changing the looping).

I need to add the currently month in the loop if anyone have ideas thanks a lot.

 

%let runasofdate= 20140101;
data creation;
rundate = input(put(&runasofdate,8.),yymmdd8.);
array psc0010_begin_date(*) psc0010_begin_date0-psc0010_begin_date11;
array psc0010_end_date(*) psc0010_end_date0-psc0010_end_date11;
do i =1 to 11  ;
psc0010_begin_date(i) = intnx('month',rundate,i,'begin');
psc0010_end_date(i)= intnx ('month', rundate, i , 'end');
 
end;
run;
 
And the second program doesn't working ..
 

 

%let runasofdate= 20140101;
data creation;
rundate = input(put(&runasofdate,8.),yymmdd8.);
array psc0010_begin_date(*) psc0010_begin_date0-psc0010_begin_date11;
array psc0010_end_date(*) psc0010_end_date0-psc0010_end_date11;
do i =0 to 11  ;
psc0010_begin_date(i) = intnx('month',rundate,i,'begin');
psc0010_end_date(i)= intnx ('month', rundate, i , 'end');
 
end;
run;
 
Thanks
1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

When the ARRAY statement contains this:

 

(*)

 

SAS counts the first element of the array as the one with subscript=1.  I you want i=0 to refer to the first element of the array, you have to change to using:

 

(0:11)

 

Otherwise, there is no element that corresponds to i=0.

View solution in original post

3 REPLIES 3
Astounding
PROC Star

When the ARRAY statement contains this:

 

(*)

 

SAS counts the first element of the array as the one with subscript=1.  I you want i=0 to refer to the first element of the array, you have to change to using:

 

(0:11)

 

Otherwise, there is no element that corresponds to i=0.

alexandralorenzo
Fluorite | Level 6
I found the solution an array cannot take a 0 value so I had to defined the array elements as you said.
But also change the loop.
Thanks for your answer
Ron_MacroMaven
Lapis Lazuli | Level 10
for macro users who want to generate a series of date values, see my paper
Macro Loops with Dates

http://www.sascommunity.org/wiki/Macro_Loops_with_Dates

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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