<?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 ODS PDF listing: table column values center alignment in SAS in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15368#M2676</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for your code. Its working but now my requirement has slightly changed. How to align only the number values centered from the tables? If it is character then it should be default alignment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Sep 2011 09:35:57 GMT</pubDate>
    <dc:creator>1239</dc:creator>
    <dc:date>2011-09-26T09:35:57Z</dc:date>
    <item>
      <title>ODS PDF listing: table column values center alignment in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15366#M2674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the pdf output I want the table column all values center aligned, how do I achieve this? Currently alignment is for character it is left justified and numbers right justified. I want all the values to be center aligned. Please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods pdf close;&lt;/P&gt;&lt;P&gt;ods listing;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ods pdf close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ods listing close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ods results off;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;options papersize=A4 nodate; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;options orientation=landscape leftmargin="0.2cm" rightmargin="0.2cm" topmargin="0.5cm" bottommargin="0.5cm";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;goptions ftext = "helvetica/bold" noborder device=CGMOF97P NOGRAPHRC;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ods pdf style=statdoc file='temp.pdf'&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; notoc style=statdoc;&lt;/P&gt;&lt;P&gt;proc print data = sashelp.class;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ods pdf close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ods results on;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ods listing;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Sep 2011 12:03:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15366#M2674</guid>
      <dc:creator>1239</dc:creator>
      <dc:date>2011-09-23T12:03:42Z</dc:date>
    </item>
    <item>
      <title>ODS PDF listing: table column values center alignment in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15367#M2675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Does this not work for you?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc print data = sashelp.class style(column)=[just=center];&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Sep 2011 13:23:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15367#M2675</guid>
      <dc:creator>NN</dc:creator>
      <dc:date>2011-09-23T13:23:38Z</dc:date>
    </item>
    <item>
      <title>ODS PDF listing: table column values center alignment in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15368#M2676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for your code. Its working but now my requirement has slightly changed. How to align only the number values centered from the tables? If it is character then it should be default alignment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2011 09:35:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15368#M2676</guid>
      <dc:creator>1239</dc:creator>
      <dc:date>2011-09-26T09:35:57Z</dc:date>
    </item>
    <item>
      <title>ODS PDF listing: table column values center alignment in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15369#M2677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi,&lt;/P&gt;&lt;P&gt;In proc print you can define the alignment for indivdual columns using the VAR and STYLE statements&lt;/P&gt;&lt;P&gt;for example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc print data=sashelp.class noobs;&lt;/P&gt;&lt;P&gt;var name sex;&lt;/P&gt;&lt;P&gt;var age / style=[just=center];&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.google.co.in/url?q=http://www2.sas.com/proceedings/sugi26/p003-26.pdf&amp;amp;sa=U&amp;amp;ei=yGCATtSvEtDsrQe60ujLDw&amp;amp;ved=0CBYQFjAC&amp;amp;usg=AFQjCNHaAcZpRHTtGOMcnitX5zc2aRidtg"&gt;Click here&lt;/A&gt; for one of the Papers That could prove useful &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2011 11:32:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15369#M2677</guid>
      <dc:creator>NN</dc:creator>
      <dc:date>2011-09-26T11:32:19Z</dc:date>
    </item>
    <item>
      <title>ODS PDF listing: table column values center alignment in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15370#M2678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the code. Sure this code will work when variables are fixed. Actually, in real time what happens is variables will be dynamic then I am not sure how to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Example: Employee table contains &lt;STRONG&gt;Name, Age, Sex, Salary, Bonus.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here &lt;STRONG&gt;Name, age, sex, salary&lt;/STRONG&gt; variables are fixed. &lt;STRONG&gt;Bonus&lt;/STRONG&gt; variable is dynamic that is if employee has got any bonus then only &lt;STRONG&gt;Bonus&lt;/STRONG&gt; variable will appear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some times data will be available in this format &lt;STRONG&gt;Name, age, sex, salary&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some times data will be available in this format &lt;STRONG&gt;Name, age, sex, salary, bonus&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So in this case how to center align only &lt;STRONG&gt;age, salary, bonus&lt;/STRONG&gt; variables as these three variables are numeric. Please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 10:16:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15370#M2678</guid>
      <dc:creator>1239</dc:creator>
      <dc:date>2011-10-05T10:16:55Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF listing: table column values center alignment in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15371#M2679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can move the style option to the PROC PRINT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;proc print data=sashelp.class noobs &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; style(header)=[just=center]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; style(data)=[just=center] &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also change the VAR statement to include all of the variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;proc print data=sashelp.class noobs;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; var _all_ / style=[just=center];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 11:27:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15371#M2679</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2011-10-05T11:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF listing: table column values center alignment in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15372#M2680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Tom but this code will center align all the variables and it will not meet my requirement where in only numeric variables that is &lt;STRONG&gt;age, salary, bonus &lt;/STRONG&gt;should be center aligned and that too &lt;STRONG&gt;bonus&lt;/STRONG&gt; variable is dynamic.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 12:49:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15372#M2680</guid>
      <dc:creator>1239</dc:creator>
      <dc:date>2011-10-05T12:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF listing: table column values center alignment in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15373#M2681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you care about the order of the variables?&lt;/P&gt;&lt;P&gt;If not then use&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; var _numeric_ / style=[just=center];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp; var _character_ ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise you might want to use code generation from the metadata.&amp;nbsp; Here is an example using PROC SQL to generate the statements into a macro varable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;data mydata ; set sashelp.class; run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;proc sql noprint ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp; select catx(' ','var',name,style) , varnum&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; into :varlist separated by ';' , :dummy&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from ( select name,varnum&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,case when (type='num') then '/ style=[just=center]'&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else ' ' end as style&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&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; from dictionary.columns&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&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; where libname='WORK' and memname='MYDATA'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&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; )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; order by varnum&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;quit;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;proc print data=work.mydata noobs;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt; &amp;amp;varlist;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 13:14:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15373#M2681</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2011-10-05T13:14:44Z</dc:date>
    </item>
    <item>
      <title>ODS PDF listing: table column values center alignment in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15374#M2682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for your code Tom. Now it meets my requirement&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Oct 2011 12:56:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15374#M2682</guid>
      <dc:creator>1239</dc:creator>
      <dc:date>2011-10-06T12:56:47Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF listing: table column values center alignment in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15375#M2683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear nishant nair, your reply is interesting for me &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;,&lt;/P&gt;&lt;P&gt;but how to generalize it to all tables in SAS outputs&lt;/P&gt;&lt;P&gt;from different PROCs ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2013 12:43:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ODS-PDF-listing-table-column-values-center-alignment-in-SAS/m-p/15375#M2683</guid>
      <dc:creator>stan</dc:creator>
      <dc:date>2013-02-19T12:43:23Z</dc:date>
    </item>
  </channel>
</rss>

