<?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: Sas Output not showing at all in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Sas-Output-not-showing-at-all/m-p/945622#M47261</link>
    <description>&lt;P&gt;Did you really submit the&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;endsas;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;statement?&lt;/P&gt;
&lt;P&gt;Because that does exactly what it says, it will end SAS.&amp;nbsp; Immediately.&amp;nbsp; &amp;nbsp;Having that in a program is only useful if you are submitting the program to run in the background.&amp;nbsp; That is you signed onto some computer that had SAS installed on it and ran they program directly from the command using the SAS command.&amp;nbsp; And then looked that the .log and .lst files that the SAS program created.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you use that with a front end tool like SAS/Studio or Enterprise Guide it means there is no way for your front end tool to return the results, because you just stopped the SAS session it was using to send the results back to you.&lt;/P&gt;</description>
    <pubDate>Mon, 30 Sep 2024 02:52:26 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2024-09-30T02:52:26Z</dc:date>
    <item>
      <title>Sas Output not showing at all</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Sas-Output-not-showing-at-all/m-p/945531#M47244</link>
      <description>&lt;P&gt;Hello, I am just analyzing means of different treatments. My log is clean (no errors) but my SAS output is not showing. Please am I doing anything wrong?. My code&amp;nbsp; is&amp;nbsp; below. Thanking you in anticipation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* Generated Code (IMPORT) */&lt;BR /&gt;/* Source File: Swift.xlsx */&lt;BR /&gt;/* Source Path: /home/Ola.Omoga0/Swift_Yield */&lt;BR /&gt;/* Code generated on: 9/28/24, 2:09 PM */&lt;BR /&gt;&lt;BR /&gt;%web_drop_table(WORK.IMPORT1);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;FILENAME REFFILE '/home/Ola.Omoga0/Swift_Yield/Swift.xlsx';&lt;BR /&gt;&lt;BR /&gt;PROC IMPORT DATAFILE=REFFILE&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DBMS=XLSX&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OUT=WORK.IMPORT1;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GETNAMES=YES;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;PROC CONTENTS DATA=WORK.IMPORT1; RUN;&lt;BR /&gt;%macro Rotation (var);&lt;BR /&gt;&lt;BR /&gt;%web_open_table(WORK.IMPORT1);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;proc mixed data= PotatoSwift;&lt;BR /&gt;&amp;nbsp; class Rep Trt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; model &amp;amp;var = Trt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; random Rep/solution;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Lsmeans Trt/diff=all;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; run;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; ods output diffs=table;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; ods output lsmeans=Mylsmeans;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Store Mylsmeans;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; run;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; data calc_lsd&lt;BR /&gt;&amp;nbsp; set table;&lt;BR /&gt;&amp;nbsp; lsd=stderr*tinv(1-(0.05/2),df);&lt;BR /&gt;&amp;nbsp; run;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; proc print data=calc_lsd;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; *var lsd estimate stderr df;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; run;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; proc plm restore=Mylsmeans;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; lsmeans Trt/pdiff adjust=tukey lines Alpha=0.05;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; run;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; mend Rotation;&lt;BR /&gt;&amp;nbsp; Rotation (var=Total_yield);&lt;BR /&gt;&amp;nbsp; Rotation (var=Leaves);&lt;BR /&gt;&amp;nbsp; run;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; endsas;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Sep 2024 21:09:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Sas-Output-not-showing-at-all/m-p/945531#M47244</guid>
      <dc:creator>Olanike</dc:creator>
      <dc:date>2024-09-28T21:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: Sas Output not showing at all</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Sas-Output-not-showing-at-all/m-p/945541#M47246</link>
      <description>&lt;P&gt;We don't know what is inside these macros that you use: %rotation and %web_open_table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So any answer I give you is pure guesswork. However, it seems as if somewhere inside these macros, the output has been turned off. Best would be for you to turn on macro debugging options, run your code again, and see if there is any command shown in the resulting log that turns off the output. The macro debugging option is the command&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options mprint;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, try this before your PROC MIXED&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods html;
ods html select all;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Sep 2024 22:04:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Sas-Output-not-showing-at-all/m-p/945541#M47246</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-09-28T22:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: Sas Output not showing at all</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Sas-Output-not-showing-at-all/m-p/945542#M47247</link>
      <description>&lt;P&gt;How are you running this code? Are you using SAS Studio, enterprise guide, PC SAS, or submitting&amp;nbsp; a batch job?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The macros %web_drop_table and %web_open_table look like they're provided by SAS as autocall macros, to help with building custom tasks in Studio.&amp;nbsp;&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/webeditorcdc/3.6/webeditordg/p0lt84u9bvaogbn1ktsbzolqbcp1.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/webeditorcdc/3.6/webeditordg/p0lt84u9bvaogbn1ktsbzolqbcp1.htm&lt;/A&gt;&amp;nbsp; Are you developing a custom task?&lt;/P&gt;</description>
      <pubDate>Sat, 28 Sep 2024 22:16:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Sas-Output-not-showing-at-all/m-p/945542#M47247</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2024-09-28T22:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: Sas Output not showing at all</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Sas-Output-not-showing-at-all/m-p/945622#M47261</link>
      <description>&lt;P&gt;Did you really submit the&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;endsas;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;statement?&lt;/P&gt;
&lt;P&gt;Because that does exactly what it says, it will end SAS.&amp;nbsp; Immediately.&amp;nbsp; &amp;nbsp;Having that in a program is only useful if you are submitting the program to run in the background.&amp;nbsp; That is you signed onto some computer that had SAS installed on it and ran they program directly from the command using the SAS command.&amp;nbsp; And then looked that the .log and .lst files that the SAS program created.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you use that with a front end tool like SAS/Studio or Enterprise Guide it means there is no way for your front end tool to return the results, because you just stopped the SAS session it was using to send the results back to you.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2024 02:52:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Sas-Output-not-showing-at-all/m-p/945622#M47261</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-09-30T02:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: Sas Output not showing at all</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Sas-Output-not-showing-at-all/m-p/945623#M47262</link>
      <description>&lt;P&gt;Hello, Thank you for your response. I include the code you advised but still I got no result. I only have a clean log but no results.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I included "mend rotation" because I want to analyse multiple variables at once, please could that be the problem?, if yes what should it be.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please find attached my code and log.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2024 03:32:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Sas-Output-not-showing-at-all/m-p/945623#M47262</guid>
      <dc:creator>Olanike</dc:creator>
      <dc:date>2024-09-30T03:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: Sas Output not showing at all</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Sas-Output-not-showing-at-all/m-p/945624#M47263</link>
      <description>&lt;P&gt;Hello, Thank you for your response. I am using SAS University Edition, I did remove endsas; but still I got no results. Please is there another code would probably work better for me. I only want to determine significance in treatment means within a location and among locations because I have 5 locations.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2024 03:34:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Sas-Output-not-showing-at-all/m-p/945624#M47263</guid>
      <dc:creator>Olanike</dc:creator>
      <dc:date>2024-09-30T03:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: Sas Output not showing at all</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Sas-Output-not-showing-at-all/m-p/945628#M47264</link>
      <description>There are at least two errors that make me question whether you have posted your actual code.&lt;BR /&gt;There's a missing semicolon before the SET statement after data calc_lsd.  And there are many missing percent signs.  For there is no such thing as a mend statement.  It should be %mend; instead.  And there id no Rotation statement in SAS.  it should be %rotation.</description>
      <pubDate>Mon, 30 Sep 2024 05:40:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Sas-Output-not-showing-at-all/m-p/945628#M47264</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2024-09-30T05:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: Sas Output not showing at all</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Sas-Output-not-showing-at-all/m-p/945650#M47265</link>
      <description>&lt;P&gt;Many of us refuse to download and open Microsoft Office documents as they are a security threat. Please include your code in your reply by clicking on the text box icon ("little running man" icon) and pasting your code as text into that window.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2024 09:35:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Sas-Output-not-showing-at-all/m-p/945650#M47265</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-09-30T09:35:22Z</dc:date>
    </item>
  </channel>
</rss>

