Hi all,
When i use the MATCH_ALL= option in ODS OUTPUT statement, it is causing warnings. Please refer to the below image and suggest.
Hi @angird1990 and welcome to the SAS Support Communities!
In the correct syntax (see ODS OUTPUT statement documentation) MATCH_ALL or MATCH_ALL=mvarname occurs in parentheses after the output object name.
In your example:
ods output summary(match_all=var_name)=stats; proc means data=sashelp.class; run;
Typically, MATCH_ALL is used in situations where two or more ODS output datasets are created.
Example:
ods output summary(match_all=dslist)=stats1; proc means data=sashelp.cars; by make; run; %put &=dslist;
Hi @angird1990 and welcome to the SAS Support Communities!
In the correct syntax (see ODS OUTPUT statement documentation) MATCH_ALL or MATCH_ALL=mvarname occurs in parentheses after the output object name.
In your example:
ods output summary(match_all=var_name)=stats; proc means data=sashelp.class; run;
Typically, MATCH_ALL is used in situations where two or more ODS output datasets are created.
Example:
ods output summary(match_all=dslist)=stats1; proc means data=sashelp.cars; by make; run; %put &=dslist;
Thank you @FreelanceReinh . It worked.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.
Ready to level-up your skills? Choose your own adventure.