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

Hi, 

 

I have around 20 files in a library. I want to apply Proc means to all the files in the library using a macro than writing all 20 file names.

 

It should take all the file names automatically if I specify the library name.

 

Thanks 

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
Try one of the other CAT functions.
There's CATT, CATX, CAT. Most likely CATT, which only trims trailing spaces so you can add a space before the NMISS.

View solution in original post

4 REPLIES 4
Reeza
Super User

You can get all the dataset names in a library from sashelp.vtable and call execute should be straightforward. You also don't necessarily need a macro depending on your needs. Here's a demo - untested. 

 

%let lname=WORK; 

data dnames; 
set sashelp.vtable;
 where libname=upper("&lname"); 
run; 

data _null_; 
set dnames; 
str=cats("proc means data=&lname..", memname, "; run;"); 
call execute(str); 
run;

 

sundeep15685
Obsidian | Level 7

Hi,

 

Thanks.

 

The code is working. 

 

I was actually looking to know about missing values in each dataset using proc means, NMISS option. 

 

As cats function is removing the trailing and leading blanks I am unable to give the NMISS option.

 

Could you please look into it.

 


data _Null_;
set metfile;
str=cats("proc means data=&library..", memname, "nmiss", "; run;");
call execute(str);
run;

 

It is generating the statements

 

proc means data=TASK3.DEMOSSUBMITnmiss; run;
ERROR: File TASK3.DEMOSSUBMITNMISS.DATA does not exist.

 

where Nmiss is mixing up with the dataset name.

 

 

Reeza
Super User
Try one of the other CAT functions.
There's CATT, CATX, CAT. Most likely CATT, which only trims trailing spaces so you can add a space before the NMISS.
sundeep15685
Obsidian | Level 7

cool. Its Working. 

 

Thanks.

 

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
  • 4 replies
  • 824 views
  • 1 like
  • 2 in conversation