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.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
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.