<?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: No Output Table being Generated in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507245#M136119</link>
    <description>108 proc sort data=pg1.storm_summary out=Storm_sort;&lt;BR /&gt;109 where basin = 'na' or basin='NA';&lt;BR /&gt;110 by MaxWindMPH ;&lt;BR /&gt;111 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: There were 488 observations read from the data set PG1.STORM_SUMMARY.&lt;BR /&gt;WHERE basin in ('NA', 'na');&lt;BR /&gt;NOTE: The data set WORK.STORM_SORT has 488 observations and 12 variables.&lt;BR /&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;BR /&gt;real time 0.02 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;---------&lt;BR /&gt;&lt;BR /&gt;The table is being created but not showing without prompting it with proc print. I should've specified before, but is there a way to change this?</description>
    <pubDate>Wed, 24 Oct 2018 17:20:58 GMT</pubDate>
    <dc:creator>joebacon</dc:creator>
    <dc:date>2018-10-24T17:20:58Z</dc:date>
    <item>
      <title>No Output Table being Generated</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507239#M136113</link>
      <description>&lt;P&gt;Hi all,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is a very basic question but I cannot understand why no output table is being generated as of late.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A simple code to test this was used:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sort data=pg1.storm_summary out=Storm_sort;&lt;BR /&gt;where basin = 'na' or basin='NA';&lt;BR /&gt;by MaxWindMPH ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, in neither my output nor my results viewer am I getting an output table which is problematic because I don't want to change my base data set for the project I am working on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2018 17:07:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507239#M136113</guid>
      <dc:creator>joebacon</dc:creator>
      <dc:date>2018-10-24T17:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: No Output Table being Generated</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507240#M136114</link>
      <description>&lt;P&gt;Try this and let us know&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
proc sort data=pg1.storm_summary out=Storm_sort;
where upcase(strip(basin)) = 'NA';
by MaxWindMPH ;
run;

proc print data=Storm_sort(obs=100);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 24 Oct 2018 17:11:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507240#M136114</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-10-24T17:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: No Output Table being Generated</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507242#M136116</link>
      <description>Post the log. Is there any message about no open destination?</description>
      <pubDate>Wed, 24 Oct 2018 17:17:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507242#M136116</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-10-24T17:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: No Output Table being Generated</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507243#M136117</link>
      <description>&lt;P&gt;What does your log say?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2018 17:17:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507243#M136117</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-10-24T17:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: No Output Table being Generated</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507244#M136118</link>
      <description>This definitely works when I proc print, but the output tables used to generate off of PROC SORT.&lt;BR /&gt;&lt;BR /&gt;Is this a setting that changed that i was unaware?</description>
      <pubDate>Wed, 24 Oct 2018 17:19:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507244#M136118</guid>
      <dc:creator>joebacon</dc:creator>
      <dc:date>2018-10-24T17:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: No Output Table being Generated</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507245#M136119</link>
      <description>108 proc sort data=pg1.storm_summary out=Storm_sort;&lt;BR /&gt;109 where basin = 'na' or basin='NA';&lt;BR /&gt;110 by MaxWindMPH ;&lt;BR /&gt;111 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: There were 488 observations read from the data set PG1.STORM_SUMMARY.&lt;BR /&gt;WHERE basin in ('NA', 'na');&lt;BR /&gt;NOTE: The data set WORK.STORM_SORT has 488 observations and 12 variables.&lt;BR /&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;BR /&gt;real time 0.02 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;---------&lt;BR /&gt;&lt;BR /&gt;The table is being created but not showing without prompting it with proc print. I should've specified before, but is there a way to change this?</description>
      <pubDate>Wed, 24 Oct 2018 17:20:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507245#M136119</guid>
      <dc:creator>joebacon</dc:creator>
      <dc:date>2018-10-24T17:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: No Output Table being Generated</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507248#M136121</link>
      <description>&lt;P&gt;If your using SAS EG then check if you have '0' mentioned as shown in below screenshot (Tools&amp;gt;Options&amp;gt;Results). Add a number there instead of 0&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/24354i82FCA59B2D4565A2/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2018 17:25:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507248#M136121</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-10-24T17:25:55Z</dc:date>
    </item>
    <item>
      <title>Re: No Output Table being Generated</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507250#M136122</link>
      <description>&lt;P&gt;I was running SAS 9.4 (base sas) but I think I am just going to switch over.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the help!&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2018 17:32:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507250#M136122</guid>
      <dc:creator>joebacon</dc:creator>
      <dc:date>2018-10-24T17:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: No Output Table being Generated</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507252#M136123</link>
      <description>AFAIK by default PROC SORT doesn't actually print any output as far as I know. The data set is sorted but there should not be any output regardless of what version you're using.</description>
      <pubDate>Wed, 24 Oct 2018 17:39:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507252#M136123</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-10-24T17:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: No Output Table being Generated</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507253#M136124</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;I don't this this is true when &lt;STRONG&gt;OUT=&lt;/STRONG&gt; option is mention in PROC SORT. Correct me if I'm wrong.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2018 17:45:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507253#M136124</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-10-24T17:45:38Z</dc:date>
    </item>
    <item>
      <title>Re: No Output Table being Generated</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507257#M136128</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/83078"&gt;@SuryaKiran&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;I don't this this is true when &lt;STRONG&gt;OUT=&lt;/STRONG&gt; option is mention in PROC SORT. Correct me if I'm wrong.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It still does not print any output with OUT= option. The OUT= in this case directs the sorted data set to a new data set, not the same name.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's possible this behaved differently in SAS EG or Studio, but I suspect not, unless it was built into a task, but then I'd bet the code still shows a PROC PRINT after as well.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2018 17:56:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507257#M136128</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-10-24T17:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: No Output Table being Generated</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507266#M136136</link>
      <description>&lt;P&gt;Make sense, thanks for the explanation.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2018 18:03:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-Output-Table-being-Generated/m-p/507266#M136136</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-10-24T18:03:26Z</dc:date>
    </item>
  </channel>
</rss>

