BookmarkSubscribeRSS Feed
Ramgem
Calcite | Level 5
Hi,
I had a problem with writing the sas code in stored process.
Value IN (&integermultiplevalueprompt);
Is that true? And why it takes only the first variable and not all the integer list.
Regards
3 REPLIES 3
arodriguez
Lapis Lazuli | Level 10
I think that if you want to used in a macro, you must create macro with option minoperator.
%macro example()/ minoperator;

%mend;
BrunoMueller
SAS Super FREQ

In case you have SAS Enterprise Guide available you can use the query builder to create a query that will subset the data based on your prompt. See Screenshot below. I have marked the relevant things when building a filter for a prompt.

 

A multiple value prompt will create more than one macro variable. Find more information on this topic in the doc here http://support.sas.com/documentation/cdl/en/stpug/68399/HTML/default/viewer.htm#n1ffjd8bu6we10n1neag...

 

Capture.PNG

Quentin
Super User

As @BrunoMueller mentioned, the key point is that multiple value prompts create multiple macro variables, not a single variable holding a list of values.  I use a macro to create the list I want, something like:

 

%macro ConcatenateSelectionList
  (prompt
  ,dlm=%str( )
  );

%local i return ;

%if &&&prompt._Count >= 2 %then %do i = 1 %to &&&prompt._Count ;
  %if &i=1 %then %let return=&&&prompt&i ; 
  %else          %let return=&return&dlm&&&prompt&i ;   
%end ;
%else %if &&&prompt._Count = 1 %then %do ;
  %let return=&&&prompt ;
%end ;
%else %if &&&prompt._Count = 0 %then %do ;
  %let return= ; %*null ;
%end ;
%else %put ER%str()ROR: USER &=&prompt._Count;

&return

%mend ConcatenateSelectionList;

 

I blogged about over at bi-notes.com: http://bi-notes.com/2013/08/sas-stored-process-taming-selection-list-prompts/

BASUG is hosting free webinars Next up: Mike Raithel presenting on validating data files on Wednesday July 17. Register now at the Boston Area SAS Users Group event page: https://www.basug.org/events.

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!
SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 3 replies
  • 3131 views
  • 0 likes
  • 4 in conversation