<?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 Few proc print options not working in SAS University Edition in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Few-proc-print-options-not-working-in-SAS-University-Edition/m-p/625127#M23779</link>
    <description>&lt;P&gt;I am using SAS University Edition to print reports using proc report procedure. However few options are not working. For eg I want to generate double overline and underline but it is not displaying my report as required. I am attaching my code for the reference.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=sashelp.class nowindows headline headskip;
columns name age sex height weight ratio;
define sex/"Gender" display width=8;
define age/"Age" display width=10;
define name/"Name" display width=10;
define height/analysis mean 'Height' format=8.2;
define weight/analysis mean 'Weight' format=8.2;
define ratio/computed format=6.2;
compute ratio;
ratio=height.mean/weight.mean;
endcompute;
rbreak after/summarize dol dul;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sun, 16 Feb 2020 19:03:02 GMT</pubDate>
    <dc:creator>Fabeeha</dc:creator>
    <dc:date>2020-02-16T19:03:02Z</dc:date>
    <item>
      <title>Few proc print options not working in SAS University Edition</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Few-proc-print-options-not-working-in-SAS-University-Edition/m-p/625127#M23779</link>
      <description>&lt;P&gt;I am using SAS University Edition to print reports using proc report procedure. However few options are not working. For eg I want to generate double overline and underline but it is not displaying my report as required. I am attaching my code for the reference.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=sashelp.class nowindows headline headskip;
columns name age sex height weight ratio;
define sex/"Gender" display width=8;
define age/"Age" display width=10;
define name/"Name" display width=10;
define height/analysis mean 'Height' format=8.2;
define weight/analysis mean 'Weight' format=8.2;
define ratio/computed format=6.2;
compute ratio;
ratio=height.mean/weight.mean;
endcompute;
rbreak after/summarize dol dul;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 16 Feb 2020 19:03:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Few-proc-print-options-not-working-in-SAS-University-Edition/m-p/625127#M23779</guid>
      <dc:creator>Fabeeha</dc:creator>
      <dc:date>2020-02-16T19:03:02Z</dc:date>
    </item>
    <item>
      <title>Re: Few proc print options not working in SAS University Edition</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Few-proc-print-options-not-working-in-SAS-University-Edition/m-p/625128#M23780</link>
      <description>&lt;P&gt;Those two options only work if you are using the ODS LISTING style of output. By default SAS Studio uses ODS HTML. The restrictions are explained here:&amp;nbsp;&lt;A href="https://documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p1o6lvfc7oqzwhn1nehvw4htp3j5.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p1o6lvfc7oqzwhn1nehvw4htp3j5.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to continue using these options wrap your code like so:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods listing;

&amp;lt;proc report code&amp;gt;

ods listing close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 16 Feb 2020 19:22:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Few-proc-print-options-not-working-in-SAS-University-Edition/m-p/625128#M23780</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2020-02-16T19:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: Few proc print options not working in SAS University Edition</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Few-proc-print-options-not-working-in-SAS-University-Edition/m-p/625131#M23781</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; They may need to use FILE= with ODS LISTING in SAS Univ Edition and SAS OnDemand for Academics because there is no default Output window to view the text file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;**SAS University Edition in a Virtual Machine;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;ods listing file='/folders/myfolders/myodslist.txt';&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;**proc report code;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;ods listing close;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;**SAS OnDemand for Academics;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;ods listing file='/home/&amp;lt;UserID&amp;gt;/myodslist.txt';&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;**proc report code;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;ods listing close;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If using the above to get "LISTING" look and feel to the code, then other options like Linesize and Pagesize will also come into play.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Feb 2020 20:13:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Few-proc-print-options-not-working-in-SAS-University-Edition/m-p/625131#M23781</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2020-02-16T20:13:43Z</dc:date>
    </item>
    <item>
      <title>Re: Few proc print options not working in SAS University Edition</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Few-proc-print-options-not-working-in-SAS-University-Edition/m-p/625307#M23783</link>
      <description>Tried the same code with ods listing. Still not getting the required output.</description>
      <pubDate>Mon, 17 Feb 2020 15:38:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Few-proc-print-options-not-working-in-SAS-University-Edition/m-p/625307#M23783</guid>
      <dc:creator>Fabeeha</dc:creator>
      <dc:date>2020-02-17T15:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: Few proc print options not working in SAS University Edition</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Few-proc-print-options-not-working-in-SAS-University-Edition/m-p/625311#M23784</link>
      <description>&lt;P&gt;Thank you!! It is working now.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2020 15:42:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Few-proc-print-options-not-working-in-SAS-University-Edition/m-p/625311#M23784</guid>
      <dc:creator>Fabeeha</dc:creator>
      <dc:date>2020-02-17T15:42:46Z</dc:date>
    </item>
    <item>
      <title>Re: Few proc print options not working in SAS University Edition</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Few-proc-print-options-not-working-in-SAS-University-Edition/m-p/625338#M23785</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; This code worked for me on my local install of SAS running 9.4M5 and also worked on my SAS Studio on a server using 9.4M6:&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="dol_dul_listing.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/36196i34A55519812AACAE/image-size/large?v=v2&amp;amp;px=999" role="button" title="dol_dul_listing.png" alt="dol_dul_listing.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Output file myodslist.txt opened in Notepad shown above. I always use FORMCHAR with LISTING output and explicitly set LINESIZE and PAGESIZE, as shown in the OPTIONS statement. Remember in SAS Studio to right click on the TXT file and select View File as Text -- otherwise, SAS Studio makes you HTML by default and does NOT show you the TXT file. You have to find the output and view it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2020 16:28:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Few-proc-print-options-not-working-in-SAS-University-Edition/m-p/625338#M23785</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2020-02-17T16:28:31Z</dc:date>
    </item>
  </channel>
</rss>

