BookmarkSubscribeRSS Feed
MGaddis
Calcite | Level 5
I am trying to read in multiple datasets that are stored by year/grade. I have a macro which works to read in all the grades for the first year, but fails to continue onto the second year. Can anyone give some suggestions as to what might be happening here? I am getting no errors, just termination after creategrade runs through the loop 6 times.

%macro createyear(num);
%LET year = 97;
%DO I = 1 %to #
%macro creategrade(howmany);
%LET grade = 3;
%DO I = 1 %to &howmany;
data eog&grade.pub&year._1;
set eogsing2.eog&grade.pub&year._1;

stdread=readscal;
stdmath=mathscal;

proc standard data=eog&grade.pub&year._1 mean=0 std=1 out=eog&grade.pub&year._1;
var stdread stdmath;
run;
%LET grade =%eval(&grade+1);
%END;
%mend creategrade;
%creategrade(6);
%LET year =%eval(&year+1);
%END;
%mend createyear;
%createyear(2);
2 REPLIES 2
sbb
Lapis Lazuli | Level 10 sbb
Lapis Lazuli | Level 10
I expect you might find macro compilation diagnostics to address your problem - try adding the following statement to your program:

OPTIONS SOURCE SOURCE2 MACROGEN SYMBOLGEN MLOGIC;

Scott Barry
SBBWorks, Inc.
MGaddis
Calcite | Level 5
Thank you very much. I am silly...I used "I" twice, so of course it wouldn't continue.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

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