<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ODS function in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975580#M43513</link>
    <description>&lt;P&gt;Thank you, but there are cases when I wank to see the icons to continue building the process flow from that database.&lt;/P&gt;
&lt;P&gt;When I follow your instructions for signal regression, it works; I see only the results (icons) that I wanted to see.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But with several regressions, it doesn't work.&lt;/P&gt;
&lt;P&gt;Here is an example of an icon of a result that I use to build another database:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lioradam_0-1758636627605.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/110109i8300A2B4A56FC35E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lioradam_0-1758636627605.png" alt="lioradam_0-1758636627605.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Lior&lt;/P&gt;</description>
    <pubDate>Tue, 23 Sep 2025 14:11:11 GMT</pubDate>
    <dc:creator>lioradam</dc:creator>
    <dc:date>2025-09-23T14:11:11Z</dc:date>
    <item>
      <title>Excluding ODS output</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975548#M43494</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the following code, I would like to present only the result for "&lt;CODE class=" language-sas"&gt;FM_quadric_reg_adj_ebxi3_Winz"&amp;nbsp;results.&amp;nbsp;but&amp;nbsp;I&amp;nbsp;have&amp;nbsp;not&amp;nbsp;succeed&amp;nbsp;to&amp;nbsp;do&amp;nbsp;that&amp;nbsp;with&amp;nbsp;ODS&amp;nbsp;statement.&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE class=" language-sas"&gt;Thank&amp;nbsp;you,&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE class=" language-sas"&gt;Lior&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=FINAL out=FM_quadric_reg_adj_ebxi_a;
by GVKEY01 Full_Name;

run;

PROC REG DATA=FM_quadric_reg_adj_ebxi_a
outest=FM_quadric_reg_adj_ebxi3 noprint outseb;

MODEL Adj_m1_e_bxi_a=Year_of_Tenure year_of_tenure2;
by GVKEY01 Full_Name;

RUN;
QUIT;



proc sql;
create table FM_quadric_reg_adj_ebxi3_PARMS as
select *
from FM_quadric_reg_adj_ebxi3
where _type_ = "PARMS";


data FM_quadric_reg_adj_ebxi3_PARMS2;
set FM_quadric_reg_adj_ebxi3_PARMS;
drop _type_;

run;

proc summary data=FM_quadric_reg_adj_ebxi3_PARMS2;

var intercept Year_of_Tenure year_of_tenure2;
output out=FM_quadric_reg_adj_ebxi3_summ p5= p95= / autoname;

quit;


data FM_quadric_reg_adj_ebxi3_Winz;

set FM_quadric_reg_adj_ebxi3_PARMS2;
if _n_ = 1 then set
FM_quadric_reg_adj_ebxi3_summ;


intercept_winz = min(max(intercept, intercept_p5), intercept_p95);
Year_of_Tenure_winz = min(max(Year_of_Tenure, Year_of_Tenure_p5), Year_of_Tenure_p95);
year_of_tenure2_winz = min(max(year_of_tenure2, year_of_tenure2_p5), year_of_tenure2_p95);



run;
proc means data=FM_quadric_reg_adj_ebxi3_Winz n mean t probt stderr;

run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2025 15:37:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975548#M43494</guid>
      <dc:creator>lioradam</dc:creator>
      <dc:date>2025-09-25T15:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: ODS function</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975550#M43495</link>
      <description>&lt;P&gt;Do you mean that you only want the PROC MEANS results to appear in the output destination? If so, try the following:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods _all_ close;

proc sort data=FINAL out=FM_quadric_reg_adj_ebxi_a;
by GVKEY01 Full_Name;

run;

PROC REG DATA=FM_quadric_reg_adj_ebxi_a
outest=FM_quadric_reg_adj_ebxi3 noprint outseb;

MODEL Adj_m1_e_bxi_a=Year_of_Tenure year_of_tenure2;
by GVKEY01 Full_Name;

RUN;
QUIT;



proc sql;
create table FM_quadric_reg_adj_ebxi3_PARMS as
select *
from FM_quadric_reg_adj_ebxi3
where _type_ = "PARMS";


data FM_quadric_reg_adj_ebxi3_PARMS2;
set FM_quadric_reg_adj_ebxi3_PARMS;
drop _type_;

run;

proc summary data=FM_quadric_reg_adj_ebxi3_PARMS2;

var intercept Year_of_Tenure year_of_tenure2;
output out=FM_quadric_reg_adj_ebxi3_summ p5= p95= / autoname;

quit;


data FM_quadric_reg_adj_ebxi3_Winz;

set FM_quadric_reg_adj_ebxi3_PARMS2;
if _n_ = 1 then set
FM_quadric_reg_adj_ebxi3_summ;


intercept_winz = min(max(intercept, intercept_p5), intercept_p95);
Year_of_Tenure_winz = min(max(Year_of_Tenure, Year_of_Tenure_p5), Year_of_Tenure_p95);
year_of_tenure2_winz = min(max(year_of_tenure2, year_of_tenure2_p5), year_of_tenure2_p95);



run;

ods listing;
proc means data=FM_quadric_reg_adj_ebxi3_Winz n mean t probt stderr;

run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If this does not answer your question, please clarify what you are currently getting and what you are expecting.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2025 10:32:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975550#M43495</guid>
      <dc:creator>Kathryn_SAS</dc:creator>
      <dc:date>2025-09-23T10:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: ODS function</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975554#M43498</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Thank you very much.&lt;/P&gt;
&lt;P&gt;When I run the program with the single code (the code attached here), it works.&lt;/P&gt;
&lt;P&gt;However, in my original program, there are several codes in the same program file, and in that case, it doesn't work.&lt;/P&gt;
&lt;P&gt;(even so I enter "ods listing;" in each code).&lt;/P&gt;
&lt;P&gt;Lior&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2025 11:14:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975554#M43498</guid>
      <dc:creator>lioradam</dc:creator>
      <dc:date>2025-09-23T11:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: ODS function</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975558#M43501</link>
      <description>&lt;P&gt;The code you included in the original post works for me also when I create sample data. What do you mean by "it doesn't work"? Are you getting Error messages or are you getting more output than you want in the ODS destination? Can you send code that replicates what you are describing? Other ways to prevent ODS output are to use ODS SELECT NONE; or ODS EXCLUDE ALL; and then ODS SELECT ALL; when you want to resume showing output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2025 11:44:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975558#M43501</guid>
      <dc:creator>Kathryn_SAS</dc:creator>
      <dc:date>2025-09-23T11:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: ODS function</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975560#M43503</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I receive more output than I want.&lt;/P&gt;
&lt;P&gt;Here are the four different codes for regressions, which are included in the program:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;


proc sort data=FINAL out=FM_quadric_reg_adj_ebxi_a;
 by GVKEY01 Full_Name;


run;


PROC REG DATA=FM_quadric_reg_adj_ebxi_a
  outest=FM_quadric_reg_adj_ebxi3 noprint outseb;


MODEL Adj_m1_e_bxi_a /*EM tobin_q */= /*ln_year_of_tenure*/ Year_of_Tenure year_of_tenure2;
   by GVKEY01 Full_Name;

RUN;
QUIT;
proc sql;
create table  FM_quadric_reg_adj_ebxi3_PARMS as 
select *
from FM_quadric_reg_adj_ebxi3
where _type_ = "PARMS";


data FM_quadric_reg_adj_ebxi3_PARMS2;
set FM_quadric_reg_adj_ebxi3_PARMS;
drop _type_;

run;

proc summary data=FM_quadric_reg_adj_ebxi3_PARMS2;
 
var intercept /*ln_year_of_tenure */Year_of_Tenure year_of_tenure2;
output out=FM_quadric_reg_adj_ebxi3_summ p5= p95= / autoname;
  
quit;


data FM_quadric_reg_adj_ebxi3_Winz;

set FM_quadric_reg_adj_ebxi3_PARMS2;
if _n_ = 1 then set
FM_quadric_reg_adj_ebxi3_summ; 

 
intercept_winz = min(max(intercept, intercept_p5), intercept_p95);
Year_of_Tenure_winz = min(max(Year_of_Tenure, Year_of_Tenure_p5), Year_of_Tenure_p95);
year_of_tenure2_winz = min(max(year_of_tenure2, year_of_tenure2_p5), year_of_tenure2_p95);


run;
ods listing;
proc means data=FM_quadric_reg_adj_ebxi3_Winz n mean t probt stderr;

run;


PROC REG DATA=FM_quadric_reg_adj_ebxi_a
  outest=FM_quadric_reg_adj_ebxi2 noprint outseb;
 
MODEL Adj_m1_e_bxi_a /*EM tobin_q*/ = Year_of_Tenure year_of_tenure2;
   by GVKEY01 Full_Name;
 
    
RUN;
QUIT;
proc sql;
create table  FM_quadric_reg_adj_ebxi2_PARMS as 
select *
from FM_quadric_reg_adj_ebxi2
where _type_ = "PARMS";


data FM_quadric_reg_adj_ebxi2_PARMS2;
set FM_quadric_reg_adj_ebxi2_PARMS;
drop _type_;

run;

proc summary data=FM_quadric_reg_adj_ebxi2_PARMS2;
 
var intercept Year_of_Tenure year_of_tenure2;
output out=FM_quadric_reg_adj_ebxi2_summ p5= p95= / autoname;
  
quit;


data FM_quadric_reg_adj_ebxi2_Winz;

set FM_quadric_reg_adj_ebxi2_PARMS2;
if _n_ = 1 then set
FM_quadric_reg_adj_ebxi2_summ; 

 
intercept_winz = min(max(intercept, intercept_p5), intercept_p95);
Year_of_Tenure_winz = min(max(Year_of_Tenure, Year_of_Tenure_p5), Year_of_Tenure_p95);
year_of_tenure2_winz = min(max(year_of_tenure2, year_of_tenure2_p5), year_of_tenure2_p95);


run;
ods listing;
proc means data=FM_quadric_reg_adj_ebxi2_Winz n mean t probt stderr;

run;



proc sort data=FINAL out= cl_adj_ebxi1_a_fm;
by GVKEY01 Full_Name 'Data Year - Fiscal'n ;
RUN;

PROC REG data=cl_adj_ebxi1_a_fm
	outest=cl_adj_ebxi1_a  noprint outseb;

model Adj_m1_e_bxi_a /*EM/* tobin_q */= year_of_tenure DM_ebxi_X  DM_adj_ebxi_a;

 by GVKEY01 Full_Name;

run;
quit;


proc sql;
create table  cl_adj_ebxi1_a_PARMS as 
select *
from cl_adj_ebxi1_a
where _type_ = "PARMS";


data cl_adj_ebxi1_a_PARMS2;
set cl_adj_ebxi1_a_PARMS;
drop _type_;

run;

proc summary data=cl_adj_ebxi1_a_PARMS2;
 
var intercept year_of_tenure DM_ebxi_X  DM_adj_ebxi_a;
output out=cl_adj_ebxi1_a_summ p5= p95= / autoname;
  
quit;


data cl_adj_ebxi1_a_Winz;

set cl_adj_ebxi1_a_PARMS2;
if _n_ = 1 then set
cl_adj_ebxi1_a_summ; 

 
intercept_winz = min(max(intercept, intercept_p5), intercept_p95);
Year_of_Tenure_winz = min(max(Year_of_Tenure, Year_of_Tenure_p5), Year_of_Tenure_p95);
DM_ebxi_X_winz = min(max(DM_ebxi_X, DM_ebxi_X_p5), DM_ebxi_X_p95);
DM_adj_ebxi_a_winz = min(max(DM_adj_ebxi_a, DM_adj_ebxi_a_p5), DM_adj_ebxi_a_p95);


run;
ods listing;
proc means data=cl_adj_ebxi1_a_Winz n mean t probt;
 
run;

proc sort data=FINAL out= cl_adj_ebxi2_a_fm;
by GVKEY01 Full_Name 'Data Year - Fiscal'n ;

PROC REG data=cl_adj_ebxi2_a_fm
	outest=cl_adj_ebxi2_a  noprint outseb;

model Adj_m1_e_bxi_a /*EM /*tobin_q*/=year_of_tenure DM_ebxi_X  DM_adj_ebxi_a;

 by GVKEY01 Full_Name;

run;
quit;


proc sql;
create table  cl_adj_ebxi2_a_PARMS as 
select *
from cl_adj_ebxi2_a
where _type_ = "PARMS";


data cl_adj_ebxi2_a_PARMS2;
set cl_adj_ebxi2_a_PARMS;
drop _type_;

run;

proc summary data=cl_adj_ebxi2_a_PARMS2;
 
var intercept year_of_tenure DM_ebxi_X  DM_adj_ebxi_a;
output out=cl_adj_ebxi2_a_summ p5= p95= / autoname;

quit;


data cl_adj_ebxi2_a_Winz;

set cl_adj_ebxi2_a_PARMS2;
if _n_ = 1 then set
cl_adj_ebxi2_a_summ; 

 
intercept_winz = min(max(intercept, intercept_p5), intercept_p95);
Year_of_Tenure_winz = min(max(Year_of_Tenure, Year_of_Tenure_p5), Year_of_Tenure_p95);
DM_ebxi_X_winz = min(max(DM_ebxi_X, DM_ebxi_X_p5), DM_ebxi_X_p95);
DM_adj_ebxi_a_winz = min(max(DM_adj_ebxi_a, DM_adj_ebxi_a_p5), DM_adj_ebxi_a_p95);



ods listing;
proc means data=cl_adj_ebxi2_a_Winz n mean t probt;
 
run;


&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2025 12:29:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975560#M43503</guid>
      <dc:creator>lioradam</dc:creator>
      <dc:date>2025-09-23T12:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: ODS function</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975563#M43505</link>
      <description>&lt;P&gt;In your code, you never close the listing destination.&amp;nbsp; If you only want the PROC MEANS results to print to the listing, you need to close the listing destination before your first PROC REG, then&amp;nbsp; before each PROC MEANS step open the listing destination, and after the PROC MEANS step close the listing destination.&amp;nbsp; You could do that like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods _all_ close;

proc sort data=FINAL out=FM_quadric_reg_adj_ebxi_a;
 by GVKEY01 Full_Name;
run;


PROC REG DATA=FM_quadric_reg_adj_ebxi_a
  outest=FM_quadric_reg_adj_ebxi3 noprint outseb;


MODEL Adj_m1_e_bxi_a /*EM tobin_q */= /*ln_year_of_tenure*/ Year_of_Tenure year_of_tenure2;
   by GVKEY01 Full_Name;
RUN;
QUIT;
proc sql;
create table  FM_quadric_reg_adj_ebxi3_PARMS as 
select *
from FM_quadric_reg_adj_ebxi3
where _type_ = "PARMS";


data FM_quadric_reg_adj_ebxi3_PARMS2;
set FM_quadric_reg_adj_ebxi3_PARMS;
drop _type_;
run;

proc summary data=FM_quadric_reg_adj_ebxi3_PARMS2;
var intercept /*ln_year_of_tenure */Year_of_Tenure year_of_tenure2;
output out=FM_quadric_reg_adj_ebxi3_summ p5= p95= / autoname;
quit;


data FM_quadric_reg_adj_ebxi3_Winz;

set FM_quadric_reg_adj_ebxi3_PARMS2;
if _n_ = 1 then set
FM_quadric_reg_adj_ebxi3_summ; 

 
intercept_winz = min(max(intercept, intercept_p5), intercept_p95);
Year_of_Tenure_winz = min(max(Year_of_Tenure, Year_of_Tenure_p5), Year_of_Tenure_p95);
year_of_tenure2_winz = min(max(year_of_tenure2, year_of_tenure2_p5), year_of_tenure2_p95);


run;

ods listing;
proc means data=FM_quadric_reg_adj_ebxi3_Winz n mean t probt stderr;
run;
ods listing close;

PROC REG DATA=FM_quadric_reg_adj_ebxi_a
  outest=FM_quadric_reg_adj_ebxi2 noprint outseb;
 
MODEL Adj_m1_e_bxi_a /*EM tobin_q*/ = Year_of_Tenure year_of_tenure2;
   by GVKEY01 Full_Name;  
RUN;
QUIT;
proc sql;
create table  FM_quadric_reg_adj_ebxi2_PARMS as 
select *
from FM_quadric_reg_adj_ebxi2
where _type_ = "PARMS";


data FM_quadric_reg_adj_ebxi2_PARMS2;
set FM_quadric_reg_adj_ebxi2_PARMS;
drop _type_;
run;

proc summary data=FM_quadric_reg_adj_ebxi2_PARMS2;
var intercept Year_of_Tenure year_of_tenure2;
output out=FM_quadric_reg_adj_ebxi2_summ p5= p95= / autoname;
quit;


data FM_quadric_reg_adj_ebxi2_Winz;
set FM_quadric_reg_adj_ebxi2_PARMS2;
if _n_ = 1 then set
FM_quadric_reg_adj_ebxi2_summ; 
intercept_winz = min(max(intercept, intercept_p5), intercept_p95);
Year_of_Tenure_winz = min(max(Year_of_Tenure, Year_of_Tenure_p5), Year_of_Tenure_p95);
year_of_tenure2_winz = min(max(year_of_tenure2, year_of_tenure2_p5), year_of_tenure2_p95);
run;

ods listing;
proc means data=FM_quadric_reg_adj_ebxi2_Winz n mean t probt stderr;
run;
ods listing close;


proc sort data=FINAL out= cl_adj_ebxi1_a_fm;
by GVKEY01 Full_Name 'Data Year - Fiscal'n ;
RUN;

PROC REG data=cl_adj_ebxi1_a_fm
	outest=cl_adj_ebxi1_a  noprint outseb;
model Adj_m1_e_bxi_a /*EM/* tobin_q */= year_of_tenure DM_ebxi_X  DM_adj_ebxi_a;
 by GVKEY01 Full_Name;
run;
quit;


proc sql;
create table  cl_adj_ebxi1_a_PARMS as 
select *
from cl_adj_ebxi1_a
where _type_ = "PARMS";


data cl_adj_ebxi1_a_PARMS2;
set cl_adj_ebxi1_a_PARMS;
drop _type_;
run;

proc summary data=cl_adj_ebxi1_a_PARMS2;
var intercept year_of_tenure DM_ebxi_X  DM_adj_ebxi_a;
output out=cl_adj_ebxi1_a_summ p5= p95= / autoname;
quit;


data cl_adj_ebxi1_a_Winz;

set cl_adj_ebxi1_a_PARMS2;
if _n_ = 1 then set
cl_adj_ebxi1_a_summ; 

 
intercept_winz = min(max(intercept, intercept_p5), intercept_p95);
Year_of_Tenure_winz = min(max(Year_of_Tenure, Year_of_Tenure_p5), Year_of_Tenure_p95);
DM_ebxi_X_winz = min(max(DM_ebxi_X, DM_ebxi_X_p5), DM_ebxi_X_p95);
DM_adj_ebxi_a_winz = min(max(DM_adj_ebxi_a, DM_adj_ebxi_a_p5), DM_adj_ebxi_a_p95);
run;

ods listing;
proc means data=cl_adj_ebxi1_a_Winz n mean t probt;
run;
ods listing close;

proc sort data=FINAL out= cl_adj_ebxi2_a_fm;
by GVKEY01 Full_Name 'Data Year - Fiscal'n ;

PROC REG data=cl_adj_ebxi2_a_fm
	outest=cl_adj_ebxi2_a  noprint outseb;
model Adj_m1_e_bxi_a /*EM /*tobin_q*/=year_of_tenure DM_ebxi_X  DM_adj_ebxi_a;
 by GVKEY01 Full_Name;
un;
quit;


proc sql;
create table  cl_adj_ebxi2_a_PARMS as 
select *
from cl_adj_ebxi2_a
where _type_ = "PARMS";


data cl_adj_ebxi2_a_PARMS2;
set cl_adj_ebxi2_a_PARMS;
drop _type_;
run;

proc summary data=cl_adj_ebxi2_a_PARMS2;
var intercept year_of_tenure DM_ebxi_X  DM_adj_ebxi_a;
output out=cl_adj_ebxi2_a_summ p5= p95= / autoname;
quit;


data cl_adj_ebxi2_a_Winz;
set cl_adj_ebxi2_a_PARMS2;
if _n_ = 1 then set
cl_adj_ebxi2_a_summ; 
intercept_winz = min(max(intercept, intercept_p5), intercept_p95);
Year_of_Tenure_winz = min(max(Year_of_Tenure, Year_of_Tenure_p5), Year_of_Tenure_p95);
DM_ebxi_X_winz = min(max(DM_ebxi_X, DM_ebxi_X_p5), DM_ebxi_X_p95);
DM_adj_ebxi_a_winz = min(max(DM_adj_ebxi_a, DM_adj_ebxi_a_p5), DM_adj_ebxi_a_p95);



ods listing;
proc means data=cl_adj_ebxi2_a_Winz n mean t probt;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Sep 2025 12:41:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975563#M43505</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2025-09-23T12:41:18Z</dc:date>
    </item>
    <item>
      <title>Re: ODS function</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975564#M43506</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Thank you, but it doesn't work.&lt;/P&gt;
&lt;P&gt;I still receive too many results.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Lior&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2025 12:54:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975564#M43506</guid>
      <dc:creator>lioradam</dc:creator>
      <dc:date>2025-09-23T12:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: ODS function</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975565#M43507</link>
      <description>&lt;P&gt;If you clear your results, and then run that code, in addition to the PROC MEANS output, what other output do you see?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2025 13:11:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975565#M43507</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2025-09-23T13:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: ODS function</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975566#M43508</link>
      <description>&lt;P&gt;I see:&lt;/P&gt;
&lt;P&gt;FM_QUADRIC_REG_ADJ_EBXI_A&lt;/P&gt;
&lt;P&gt;FM_QUADRIC_REG_ADJ_EBXI3&lt;/P&gt;
&lt;P&gt;FM_QUADRIC_REG_ADJ_EBXI3_PARMS&lt;/P&gt;
&lt;P&gt;FM_QUADRIC_REG_ADJ_EBXI3_PARMS2&lt;/P&gt;
&lt;P&gt;FM_QUADRIC_REG_ADJ_EBXI3_SUMM&lt;/P&gt;
&lt;P&gt;FM_QUADRIC_REG_ADJ_EBXI2&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and many others&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2025 13:17:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975566#M43508</guid>
      <dc:creator>lioradam</dc:creator>
      <dc:date>2025-09-23T13:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: ODS function</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975568#M43509</link>
      <description>&lt;P&gt;Those are the names of datasets.&amp;nbsp; You shouldn't see them in your results window.&amp;nbsp; But if you're using Enterprise Guide, or another IDE, you may see icons for the output datasets that were created.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you using Enterprise Guide, Studio, or something else?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you post a screen shot of what you're seeing?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2025 13:25:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975568#M43509</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2025-09-23T13:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: ODS function</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975570#M43510</link>
      <description>&lt;P&gt;I see in another thread that you mentioned Enterprise Guide and process flows.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is your goal to stop these output datasets from being added as icons in your process flow?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If that's your goal, you can go to Tools-&amp;gt;Options&amp;nbsp; and then select Project and Process Flows and set the Maximum number of output datasets to add to the project to be 0.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Quentin_0-1758634462720.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/110105i6AF8B7926C59C8AE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Quentin_0-1758634462720.png" alt="Quentin_0-1758634462720.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2025 13:34:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975570#M43510</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2025-09-23T13:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: ODS function</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975572#M43511</link>
      <description>&lt;P&gt;Yes, I use Enterprise Guide.&lt;/P&gt;
&lt;P&gt;Those icons make my process flow look complicated.&lt;/P&gt;
&lt;P&gt;Is there a way to avoid seeing them?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thank,&lt;/P&gt;
&lt;P&gt;Lior&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lioradam_0-1758634937637.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/110106iBA641EE998403D7B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lioradam_0-1758634937637.png" alt="lioradam_0-1758634937637.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2025 13:42:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975572#M43511</guid>
      <dc:creator>lioradam</dc:creator>
      <dc:date>2025-09-23T13:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: ODS function</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975574#M43512</link>
      <description>&lt;P&gt;Thanks for image.&amp;nbsp; Yes, there is an option you can set that will stop those dataset icons from being added to your flow.&amp;nbsp; See my second post:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/New-SAS-User/ODS-function/m-p/975570/highlight/true#M43510" target="_blank"&gt;https://communities.sas.com/t5/New-SAS-User/ODS-function/m-p/975570/highlight/true#M43510&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2025 13:45:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975574#M43512</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2025-09-23T13:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: ODS function</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975580#M43513</link>
      <description>&lt;P&gt;Thank you, but there are cases when I wank to see the icons to continue building the process flow from that database.&lt;/P&gt;
&lt;P&gt;When I follow your instructions for signal regression, it works; I see only the results (icons) that I wanted to see.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But with several regressions, it doesn't work.&lt;/P&gt;
&lt;P&gt;Here is an example of an icon of a result that I use to build another database:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lioradam_0-1758636627605.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/110109i8300A2B4A56FC35E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lioradam_0-1758636627605.png" alt="lioradam_0-1758636627605.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Lior&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2025 14:11:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975580#M43513</guid>
      <dc:creator>lioradam</dc:creator>
      <dc:date>2025-09-23T14:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: ODS function</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975582#M43514</link>
      <description>&lt;P&gt;In my experience setting that option to 0 has always worked to prevent all output datasets from being added to the process flow.&amp;nbsp; Maybe someone else will have an idea.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2025 14:26:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975582#M43514</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2025-09-23T14:26:48Z</dc:date>
    </item>
    <item>
      <title>Re: ODS function</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975583#M43515</link>
      <description>&lt;P&gt;Thank you very much for trying!&lt;/P&gt;
&lt;P&gt;Highly appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Lior&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2025 14:45:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975583#M43515</guid>
      <dc:creator>lioradam</dc:creator>
      <dc:date>2025-09-23T14:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: ODS function</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975684#M43520</link>
      <description>&lt;P&gt;I don't want to hijack this thread, but I'd like to encourage SAS Experts like&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13770"&gt;@Kathryn_SAS&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin&lt;/a&gt;&amp;nbsp;to stop proposing&amp;nbsp;&lt;BR /&gt;ODS _ALL_ CLOSE;&lt;BR /&gt;or&amp;nbsp;&lt;BR /&gt;ODS LISTING CLOSE;&lt;BR /&gt;in their solutions.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The modern syntax for suppressing ODS results is&lt;BR /&gt;ODS EXCLUDE ALL;&lt;BR /&gt;followed by ODS EXCLUDE NONE or ODS SELECT &amp;lt;object&amp;gt; when you are ready to resume output.&lt;/P&gt;
&lt;P&gt;For more details, see&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://blogs.sas.com/content/iml/2015/05/26/suppress-ods.html" target="_blank"&gt;What is the best way to suppress ODS output in SAS?&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://blogs.sas.com/content/iml/2015/05/28/five-reasons-ods-exclude.html" target="_blank"&gt;Five reasons to use ODS EXCLUDE to suppress SAS output&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Wed, 24 Sep 2025 18:21:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975684#M43520</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2025-09-24T18:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: ODS function</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975738#M43522</link>
      <description>&lt;P&gt;Hi Rick,&lt;/P&gt;
&lt;P&gt;Could you please assist in locating this syntax?&lt;/P&gt;
&lt;P&gt;I sent my complete program, which includes several regressions; each regression includes several codes.&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;
&lt;P&gt;Lior&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2025 15:24:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975738#M43522</guid>
      <dc:creator>lioradam</dc:creator>
      <dc:date>2025-09-25T15:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: ODS function</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975740#M43523</link>
      <description>&lt;P&gt;I feel confident that you can use the best practices in the links to improve your program. Since I don't have your data, it is difficult for me (or anyone) to know whether our suggestions fix all of the problems you are experiencing. Give it a try and then report back if you have additional questions.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2025 15:37:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975740#M43523</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2025-09-25T15:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: ODS function</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975750#M43524</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/133482"&gt;@lioradam&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank you, but there are cases when I wank to see the icons to continue building the process flow from that database.&lt;/P&gt;
&lt;P&gt;When I follow your instructions for signal regression, it works; I see only the results (icons) that I wanted to see.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But with several regressions, it doesn't work.&lt;/P&gt;
&lt;P&gt;Here is an example of an icon of a result that I use to build another database:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lioradam_0-1758636627605.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/110109i8300A2B4A56FC35E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lioradam_0-1758636627605.png" alt="lioradam_0-1758636627605.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Lior&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In that second picture, can you show the full process flow?&amp;nbsp; It's not clear to me if those lines are pointing to output datasets (which should not happen if you have set the option I mentioned to 0), or if they are pointing to other artifacts.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2025 16:07:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Excluding-ODS-output/m-p/975750#M43524</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2025-09-25T16:07:30Z</dc:date>
    </item>
  </channel>
</rss>

