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

Hello! I'm rather new at SAS and I'm a little stumped on how best to do this.

I have the following dataset, called region_input (apologies for using a photo, the data step version SAS macro doesn't work on my SAS due to needing to get github information)

Untitled.png

I want to create a DO loop that takes the value of the Region column at each row, assigns that to a macro variable, and then performs a number of other steps using that macro variable, before moving on to the next row and repeating.
I am having a lot of trouble figuring out how to reference the first row, however. So far I have :

%macro importer;
%do i=1 to 7;
data _null_;
set region_input;
call symput("region_name", Region);
run;
%end;
%mend importer;

But this doesn't work and I am utterly stumped on how to progress, or even really what to search in the help files.

1 ACCEPTED SOLUTION

Accepted Solutions
sbxkoenk
SAS Super FREQ

You want sthg. like this??

data _NULL_;
 if 0 then set work.region_input nobs=count;
 call symput('NumberOfRegions',trim(left(put(count,12.))));
 STOP;
run;
%PUT &=NumberOfRegions;

%macro importer;
 %do i=1 %to &NumberOfRegions.;
data _null_;
 set work.region_input(firstobs=&i. obs=&i.);
 call symputx("region_name", Region);
run;
%PUT &=region_name;
 %end;
%mend  importer;

Koen

View solution in original post

8 REPLIES 8
sbxkoenk
SAS Super FREQ

You want sthg. like this??

data _NULL_;
 if 0 then set work.region_input nobs=count;
 call symput('NumberOfRegions',trim(left(put(count,12.))));
 STOP;
run;
%PUT &=NumberOfRegions;

%macro importer;
 %do i=1 %to &NumberOfRegions.;
data _null_;
 set work.region_input(firstobs=&i. obs=&i.);
 call symputx("region_name", Region);
run;
%PUT &=region_name;
 %end;
%mend  importer;

Koen

Carmen_Miranda
Fluorite | Level 6

Oh, I see how this works! That's super clever, I think the tutorial I had been following skipped over the firstobs option in set statements. (That or I've forgotten it already...)

 

Thank you so much for the help. I think the way of dynamically adjusting the number of regions is really awesome, too, as I was going to have to figure that one out myself down the line. 

Astounding
PROC Star
It's likely that CALL EXECUTE would simplify the process (instead of CALL SYMPUT). But we would need to know more about the analysis that gets performed for each REGION.
sbxkoenk
SAS Super FREQ

@Astounding wrote:
It's likely that CALL EXECUTE would simplify the process (instead of CALL SYMPUT). But we would need to know more about the analysis that gets performed for each REGION.

I absolutely agree with @Astounding .
Although I don't like CALL EXECUTE that much.
I always do "data-driven dynamic code generation" instead ...

using data _NULL_ step with File stmt. and several Put statements

followed by a %INCLUDE of the generated code.

 

Koen

PaigeMiller
Diamond | Level 26

How about this:

 

%macro importer;
proc sql noprint;
    select region into :regions separated by ' ' from region_input;
quit;
%do i=1 to &sqlobs;
%let this_region=%scan(&regions,&i,%str( ));
/* Your analysis of each region goes here */
%end;
%mend importer;

 

Which brings us to the big question in my mind — why not use BY statements, and perform analyses with the command

 

BY REGION;

 

All of this other manipulation in my code at the top, and everyone else's code, needs to be justified by answering: Why doesn't BY work here?

--
Paige Miller
Carmen_Miranda
Fluorite | Level 6

Oh wow, this one's really clever! I'm not very familiar with SAS SQL, but this works really well.

There is one specific reason why I'm not using BY: I actually kinda forgot it existed. I started working in SAS 3 weeks ago and I've had so many new things put into my brain that I'm forgetting the first things I learned! Something of a grim start to the language, eh?

 

Thank you so much for the help with this. I'll give BY a shot and see if I can get it working!

Tom
Super User Tom
Super User

DO NOT use the ANCIENT CALL SYMPUT() function unless it is critical that leading and/or trailing spaces  actually be put into the macro variable.

 

Use the NORMAL CALL SYMPUTX() function instead.  It has only been around about 25 years now.

 

Also look at the CATS() function for generating a unique macro variable name for each observation's value of REGION.

data _null_;
  set region_input;
  call symputx(cats('region_name',_n_),Region);
run;
Carmen_Miranda
Fluorite | Level 6

Oh, that's super cool! I haven't heard of CATS() before, I think that's going to be super useful.

 

Also I have the sneaking suspicion that my organisation's in-house SAS tutorial might actually predate me as a person, so I haven't heard of SYMPUTX() yet. Thanks for the head's up on that one, I certainly don't need any leading or trailing blanks that I hadn't noticed messing up my code later on.

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
  • 8 replies
  • 1304 views
  • 5 likes
  • 5 in conversation