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 Sale presenting Data Warehousing with SAS April 10 at noon ET. Register now at the Boston Area SAS Users Group event page: https://www.basug.org/events.

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!

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
  • 2973 views
  • 0 likes
  • 4 in conversation