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

Hello,

I am trying to export multiple excel files based on a user inputted macro value Job.

 

Job will look like this (user input)

129692,135534, 135512

 

So, if the user inputs three jobs, three files will be created:

OUTPUT_129692

OUTPUT_135534

OUTPUT_135512

 

However, when I run the code below -- I cannot seem to get the export statement to subset the data successfully and output each individual file

The error returns %SCAN has too many arguments:

 

%macro loop;
%local i nextjob;
%do i=1 %to %sysfunc(countw("&job.",","));
%let nextjob = %scan(&job., &i);

 proc export data = temp.IDs_SUM (where=(jobid = "&nextjob."))
		outfile="/USERFOLDER/OUTPUT_&nextjob..xlsx"
		DBMS=XLSX REPLACE;
	run;

%end;
%mend loop;
%loop;

Any tips on what I am doing wrong?


Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
%let job = 129692,135534,135512 ;  %put &job;

%macro dummy;
   %do i=1 %to %sysfunc(countw(%bquote(&job),%str(,)));
      %let nextjob = %scan(%bquote(&job),&i);
      %put Nextjob is &nextjob ;
   %end;
%mend;

%dummy

View solution in original post

3 REPLIES 3
ballardw
Super User

Basic issue is including commas in a list that will be used as a macro parameter.

 

Try making the list look like this:

129692 135534 135512

such as

%let job = 129692 135534 135512;

 

also the quotes in the countw likely aren't needed

%let job = 129692 135534 135512;

%macro dummy;
   %do i=1 %to %sysfunc(countw(&job," "));
      %let nextjob = %scan(&job.,&i);
      %put Nextjob is &nextjob ;
   %end;
%mend;

%dummy;

Note that with the commas you were generating

 

%scan(129692, 135534, 135512, &I) which is pretty obviously not quite correct.

Ksharp
Super User
%let job = 129692,135534,135512 ;  %put &job;

%macro dummy;
   %do i=1 %to %sysfunc(countw(%bquote(&job),%str(,)));
      %let nextjob = %scan(%bquote(&job),&i);
      %put Nextjob is &nextjob ;
   %end;
%mend;

%dummy
Terho
Obsidian | Level 7

Thank you Ksharp! This worked beautifully!

I guess the key point here is the use of the %bquote and %str function within the macro.


Thanks again!

 

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 3595 views
  • 1 like
  • 3 in conversation