<?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 Export two outputs using Output Delivery System (ODS) unsuccessully in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Export-two-outputs-using-Output-Delivery-System-ODS/m-p/717470#M221886</link>
    <description>&lt;P&gt;Hi SAS Users,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Today I want to assign &lt;STRONG&gt;two outputs&lt;/STRONG&gt; from the result of &lt;STRONG&gt;proc univariate&lt;/STRONG&gt; called: &lt;STRONG&gt;Quantiles&lt;/STRONG&gt; and&amp;nbsp;&lt;STRONG&gt;Basic Statistical Measures&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;My code is as below (I use the sashelp.shoes dataset that everyone can access easily for checking)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods output Quantiles=outlier Basic Statistical Measures=summ;
proc univariate data=sashelp.shoes noprint;
var sales Inventory;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;However, when I run such a code, the result only shows the output "&lt;STRONG&gt;outlier&lt;/STRONG&gt;", not the&lt;STRONG&gt; sum, &lt;/STRONG&gt;while I want both of them.&lt;/P&gt;
&lt;P&gt;The warning log is as below:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;WARNING: Output 'Measures' was not created.  Make sure that the output object name, label, or path is spelled correctly.  Also, 
         verify that the appropriate procedure options are used to produce the requested output object.  For example, verify that 
         the NOPRINT option is not used.
WARNING: Output 'Statistical' was not created.  Make sure that the output object name, label, or path is spelled correctly.  Also, 
         verify that the appropriate procedure options are used to produce the requested output object.  For example, verify that 
         the NOPRINT option is not used.
WARNING: Output 'Basic' was not created.  Make sure that the output object name, label, or path is spelled correctly.  Also, verify 
         that the appropriate procedure options are used to produce the requested output object.  For example, verify that the 
         NOPRINT option is not used.&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Can you please help me to sort it out?&lt;/P&gt;
&lt;P&gt;Many thanks and warm regards.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 08 Feb 2021 02:07:58 GMT</pubDate>
    <dc:creator>Phil_NZ</dc:creator>
    <dc:date>2021-02-08T02:07:58Z</dc:date>
    <item>
      <title>Export two outputs using Output Delivery System (ODS) unsuccessully</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-two-outputs-using-Output-Delivery-System-ODS/m-p/717470#M221886</link>
      <description>&lt;P&gt;Hi SAS Users,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Today I want to assign &lt;STRONG&gt;two outputs&lt;/STRONG&gt; from the result of &lt;STRONG&gt;proc univariate&lt;/STRONG&gt; called: &lt;STRONG&gt;Quantiles&lt;/STRONG&gt; and&amp;nbsp;&lt;STRONG&gt;Basic Statistical Measures&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;My code is as below (I use the sashelp.shoes dataset that everyone can access easily for checking)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods output Quantiles=outlier Basic Statistical Measures=summ;
proc univariate data=sashelp.shoes noprint;
var sales Inventory;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;However, when I run such a code, the result only shows the output "&lt;STRONG&gt;outlier&lt;/STRONG&gt;", not the&lt;STRONG&gt; sum, &lt;/STRONG&gt;while I want both of them.&lt;/P&gt;
&lt;P&gt;The warning log is as below:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;WARNING: Output 'Measures' was not created.  Make sure that the output object name, label, or path is spelled correctly.  Also, 
         verify that the appropriate procedure options are used to produce the requested output object.  For example, verify that 
         the NOPRINT option is not used.
WARNING: Output 'Statistical' was not created.  Make sure that the output object name, label, or path is spelled correctly.  Also, 
         verify that the appropriate procedure options are used to produce the requested output object.  For example, verify that 
         the NOPRINT option is not used.
WARNING: Output 'Basic' was not created.  Make sure that the output object name, label, or path is spelled correctly.  Also, verify 
         that the appropriate procedure options are used to produce the requested output object.  For example, verify that the 
         NOPRINT option is not used.&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Can you please help me to sort it out?&lt;/P&gt;
&lt;P&gt;Many thanks and warm regards.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2021 02:07:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-two-outputs-using-Output-Delivery-System-ODS/m-p/717470#M221886</guid>
      <dc:creator>Phil_NZ</dc:creator>
      <dc:date>2021-02-08T02:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: Export two outputs using Output Delivery System (ODS) unsuccessully</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-two-outputs-using-Output-Delivery-System-ODS/m-p/717486#M221893</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Basic Statistical Measures&lt;/STRONG&gt; is not a valid table name, a good clue towards that is the spaces in&amp;nbsp;the name.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use ODS TRACE to find the &lt;A href="https://blogs.sas.com/content/iml/2017/01/09/ods-output-any-statistic.html" target="_self"&gt;exact table name&lt;/A&gt; or find it in the &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=procstat&amp;amp;docsetTarget=procstat_univariate_odstables.htm&amp;amp;locale=en" target="_self"&gt;documentation, under Details, ODSTable Names&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/212695"&gt;@Phil_NZ&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi SAS Users,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Today I want to assign &lt;STRONG&gt;two outputs&lt;/STRONG&gt; from the result of &lt;STRONG&gt;proc univariate&lt;/STRONG&gt; called: &lt;STRONG&gt;Quantiles&lt;/STRONG&gt; and&amp;nbsp;&lt;STRONG&gt;Basic Statistical Measures&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;My code is as below (I use the sashelp.shoes dataset that everyone can access easily for checking)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods output Quantiles=outlier Basic Statistical Measures=summ;
proc univariate data=sashelp.shoes noprint;
var sales Inventory;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;However, when I run such a code, the result only shows the output "&lt;STRONG&gt;outlier&lt;/STRONG&gt;", not the&lt;STRONG&gt; sum, &lt;/STRONG&gt;while I want both of them.&lt;/P&gt;
&lt;P&gt;The warning log is as below:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;WARNING: Output 'Measures' was not created.  Make sure that the output object name, label, or path is spelled correctly.  Also, 
         verify that the appropriate procedure options are used to produce the requested output object.  For example, verify that 
         the NOPRINT option is not used.
WARNING: Output 'Statistical' was not created.  Make sure that the output object name, label, or path is spelled correctly.  Also, 
         verify that the appropriate procedure options are used to produce the requested output object.  For example, verify that 
         the NOPRINT option is not used.
WARNING: Output 'Basic' was not created.  Make sure that the output object name, label, or path is spelled correctly.  Also, verify 
         that the appropriate procedure options are used to produce the requested output object.  For example, verify that the 
         NOPRINT option is not used.&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Can you please help me to sort it out?&lt;/P&gt;
&lt;P&gt;Many thanks and warm regards.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2021 04:21:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-two-outputs-using-Output-Delivery-System-ODS/m-p/717486#M221893</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-02-08T04:21:26Z</dc:date>
    </item>
  </channel>
</rss>

