<?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: PROC PRINT and titles in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/PROC-PRINT-and-titles/m-p/499152#M132767</link>
    <description>Does mine work? If so, what’s the difference between my code and yours?</description>
    <pubDate>Wed, 26 Sep 2018 15:49:02 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2018-09-26T15:49:02Z</dc:date>
    <item>
      <title>PROC PRINT and titles</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-PRINT-and-titles/m-p/499118#M132755</link>
      <description>&lt;P&gt;Hi All ,&lt;/P&gt;&lt;P&gt;I have couple of questions regarding PROC PRINT .&lt;/P&gt;&lt;P&gt;1. How can I align&amp;nbsp;title from&amp;nbsp;column 1 . It always comes in the center&amp;nbsp;.&lt;/P&gt;&lt;P&gt;2. how can I increase the font&amp;nbsp;only for Title&lt;/P&gt;&lt;P&gt;3. I have 7 variables which come in column in&amp;nbsp;proc print . How can I make it tabular . so that it will be easy&amp;nbsp;to upload the output to a xl file .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please suggest . &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 14:37:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-PRINT-and-titles/m-p/499118#M132755</guid>
      <dc:creator>sams54156</dc:creator>
      <dc:date>2018-09-26T14:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: PROC PRINT and titles</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-PRINT-and-titles/m-p/499122#M132757</link>
      <description>&lt;P&gt;Have you tried applying any options?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Justify/J for alignment&lt;/P&gt;
&lt;P&gt;HEIGHT for size&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't understand your third question. But if you're trying to get an XLSX file, just use ODS EXCEL.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods excel file="myfile.xlsx" style=seaside;

title j=l height=20 "This is a demo";

proc print data=sashelp.class;
run;

ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=n1ukd9sqgqiwwhn1mrx4c1rbse1j.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=n1ukd9sqgqiwwhn1mrx4c1rbse1j.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;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/234505"&gt;@sams54156&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi All ,&lt;/P&gt;
&lt;P&gt;I have couple of questions regarding PROC PRINT .&lt;/P&gt;
&lt;P&gt;1. How can I align&amp;nbsp;title from&amp;nbsp;column 1 . It always comes in the center&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;2. how can I increase the font&amp;nbsp;only for Title&lt;/P&gt;
&lt;P&gt;3. I have 7 variables which come in column in&amp;nbsp;proc print . How can I make it tabular . so that it will be easy&amp;nbsp;to upload the output to a xl file .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please suggest . &amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Wed, 26 Sep 2018 14:50:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-PRINT-and-titles/m-p/499122#M132757</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-09-26T14:50:50Z</dc:date>
    </item>
    <item>
      <title>Re: PROC PRINT and titles</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-PRINT-and-titles/m-p/499150#M132766</link>
      <description>&lt;P&gt;thanks for the reply .&lt;/P&gt;&lt;P&gt;I used this ,&lt;/P&gt;&lt;P&gt;proc print data=BASEFILE noobs;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;TITLE1 "TOTAL NO OF EXCEPTION : &amp;amp;nobs" height=50 JUSTIFY=L;&lt;BR /&gt;options nodate;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This didn't increase the font neither did it align the title to left .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TOTAL NO OF EXCEPTION&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 15:45:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-PRINT-and-titles/m-p/499150#M132766</guid>
      <dc:creator>sams54156</dc:creator>
      <dc:date>2018-09-26T15:45:05Z</dc:date>
    </item>
    <item>
      <title>Re: PROC PRINT and titles</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-PRINT-and-titles/m-p/499152#M132767</link>
      <description>Does mine work? If so, what’s the difference between my code and yours?</description>
      <pubDate>Wed, 26 Sep 2018 15:49:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-PRINT-and-titles/m-p/499152#M132767</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-09-26T15:49:02Z</dc:date>
    </item>
    <item>
      <title>Re: PROC PRINT and titles</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-PRINT-and-titles/m-p/499308#M132843</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/234505"&gt;@sams54156&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;thanks for the reply .&lt;/P&gt;
&lt;P&gt;I used this ,&lt;/P&gt;
&lt;P&gt;proc print data=BASEFILE noobs;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;TITLE1 "TOTAL NO OF EXCEPTION : &amp;amp;nobs" height=50 JUSTIFY=L;&lt;BR /&gt;options nodate;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This didn't increase the font neither did it align the title to left .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TOTAL NO OF EXCEPTION&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The modifiers come before the text that you want to modify. Since you placed all of the modifiers after all the text there was nothing to modify.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 22:38:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-PRINT-and-titles/m-p/499308#M132843</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-09-26T22:38:14Z</dc:date>
    </item>
  </channel>
</rss>

