<?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: ODS excel output in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187887#M12907</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; One thing I notice is that you use the TABULATE form of the STYLE= override ... the simple &lt;STRONG style="font-family: courier new,courier;"&gt;STYLE={....}&lt;/STRONG&gt; and although I know that the form CAN/MIGHT work in some instances, I find it better, in the long run, to use the syntax that is documented for PROC REPORT, which is (in the PROC and DEFINE statements) to use:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;style(&lt;STRONG style="color: #ff00ff;"&gt;location&lt;/STRONG&gt;)={...}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;where &lt;STRONG style="color: #ff00ff;"&gt;location&lt;/STRONG&gt; can be HEADER, COLUMN, REPORT, SUMMARY, etc. of course not all locations can be used in all statements, but in the DEFINE statement, I think it is best to say STYLE(COLUMN) if you want the column info to be left justified or center justified. In the simple version of your code below (for one group), I have made the cell width larger, so you can see that the headers are center justified while the data cells are left justified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;** code below;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods listing close;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods tagsets.excelxp file="c:\temp\examp.xls" style=sasweb ;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods tagsets.excelxp options(autofilter='all' sheet_name='Male');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc report data=sashelp.class nowd&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; style(&lt;SPAN style="color: #ff00ff;"&gt;header&lt;/SPAN&gt;)={just=c width=1in};&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;where sex='M';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;column name sex;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;define name/display 'male' style(column)=[just=l];&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;define sex/style(&lt;SPAN style="color: #ff00ff;"&gt;column&lt;/SPAN&gt;)=[just=l];&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods tagsets.excelxp close;&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11557iEBF1905A0EA45EA4/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="xp_column_left_header_center.png" title="xp_column_left_header_center.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Feb 2014 03:42:38 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2014-02-27T03:42:38Z</dc:date>
    <item>
      <title>ODS excel output</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187885#M12905</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;I am trying to create multiple sheets in excel file, but its always displaying right justified for all character columns even i spefified with&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Courier New;"&gt;style&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;=[just=l];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output file is atatched. Anything wrong with below sample code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; tagsets.excelxp &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Courier New;"&gt;file&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 12pt; font-family: Courier New;"&gt;"/opt/app/SAS/data/export/WUSS1.xls"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Courier New;"&gt;style&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;=sasweb ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; tagsets.excelxp options(autofilter=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 12pt; font-family: Courier New;"&gt;'ALL'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; sheet_name=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 12pt; font-family: Courier New;"&gt;'Male'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #000080; font-size: 12pt; font-family: Courier New;"&gt;proc&lt;/STRONG&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #000080; font-size: 12pt; font-family: Courier New;"&gt;report&lt;/STRONG&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Courier New;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;=sashelp.class &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Courier New;"&gt;nowd&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Courier New;"&gt;where&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; sex=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 12pt; font-family: Courier New;"&gt;'M'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; name sex;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; name/display 'male' &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Courier New;"&gt;style&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;=[just=l];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; sex/&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Courier New;"&gt;style&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;=[just=l];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; tagsets.excelxp options(autofilter=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 12pt; font-family: Courier New;"&gt;'ALL'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; sheet_name=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 12pt; font-family: Courier New;"&gt;'FeMale'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #000080; font-size: 12pt; font-family: Courier New;"&gt;proc&lt;/STRONG&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #000080; font-size: 12pt; font-family: Courier New;"&gt;report&lt;/STRONG&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Courier New;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;=sashelp.class &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Courier New;"&gt;nowd&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Courier New;"&gt;where&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; sex=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 12pt; font-family: Courier New;"&gt;'F'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; name sex;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; name/display 'female' &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Courier New;"&gt;style&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;=[just=l];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; sex/&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Courier New;"&gt;style&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;=[just=l];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Courier New;"&gt;ods&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; tagsets.excelxp &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Courier New;"&gt;close&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/10691iD2B6A061ADDA0128/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="ods excel.png" title="ods excel.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Feb 2014 14:37:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187885#M12905</guid>
      <dc:creator>sunilreddy</dc:creator>
      <dc:date>2014-02-26T14:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: ODS excel output</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187886#M12906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; Is your test syntax missing some keywords? I don't see DEFINE or ODS on some statements. Is this the whole program?&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Feb 2014 03:22:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187886#M12906</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2014-02-27T03:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: ODS excel output</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187887#M12907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; One thing I notice is that you use the TABULATE form of the STYLE= override ... the simple &lt;STRONG style="font-family: courier new,courier;"&gt;STYLE={....}&lt;/STRONG&gt; and although I know that the form CAN/MIGHT work in some instances, I find it better, in the long run, to use the syntax that is documented for PROC REPORT, which is (in the PROC and DEFINE statements) to use:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;style(&lt;STRONG style="color: #ff00ff;"&gt;location&lt;/STRONG&gt;)={...}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;where &lt;STRONG style="color: #ff00ff;"&gt;location&lt;/STRONG&gt; can be HEADER, COLUMN, REPORT, SUMMARY, etc. of course not all locations can be used in all statements, but in the DEFINE statement, I think it is best to say STYLE(COLUMN) if you want the column info to be left justified or center justified. In the simple version of your code below (for one group), I have made the cell width larger, so you can see that the headers are center justified while the data cells are left justified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;** code below;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods listing close;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods tagsets.excelxp file="c:\temp\examp.xls" style=sasweb ;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods tagsets.excelxp options(autofilter='all' sheet_name='Male');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc report data=sashelp.class nowd&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; style(&lt;SPAN style="color: #ff00ff;"&gt;header&lt;/SPAN&gt;)={just=c width=1in};&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;where sex='M';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;column name sex;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;define name/display 'male' style(column)=[just=l];&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;define sex/style(&lt;SPAN style="color: #ff00ff;"&gt;column&lt;/SPAN&gt;)=[just=l];&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods tagsets.excelxp close;&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11557iEBF1905A0EA45EA4/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="xp_column_left_header_center.png" title="xp_column_left_header_center.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Feb 2014 03:42:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187887#M12907</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2014-02-27T03:42:38Z</dc:date>
    </item>
    <item>
      <title>Re: ODS excel output</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187888#M12908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe there are sytax missing , i tried the same code with updated missing syntax. i don't see any&amp;nbsp; problem with the code and also the values are left aligned&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods listing close;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp file="~path/WUSS1.xls"&lt;/P&gt;&lt;P&gt;style=sasweb ;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp options(autofilter='ALL' sheet_name='Male');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc report data=sashelp.class nowd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where sex='M';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;column name sex;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;define name/display 'male' style=[just=l];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;define sex/style=[just=l];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp options(autofilter='ALL' sheet_name='FeMale');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc report data=sashelp.class nowd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where sex='F';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;column name sex;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;define name/display 'female' style=[just=l];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;define sex/style=[just=l];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;output:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jiveImage" src="https://communities.sas.com/legacyfs/online/5032_pastedImage_0.png" style="width: 175px; height: 808px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Feb 2014 04:00:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187888#M12908</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2014-02-27T04:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: ODS excel output</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187889#M12909</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;BR /&gt;I've tried with both of ur code also. I am still not seeing left aligned in excel 2010 version. I assume it might be a probelme while exporting into excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls find the attached excel.&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11919iFA44091DDC85E9DB/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="out1.png" title="out1.png" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11920iB7088E12261DBF4D/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="out2.png" title="out2.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Feb 2014 08:16:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187889#M12909</guid>
      <dc:creator>sunilreddy</dc:creator>
      <dc:date>2014-02-27T08:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: ODS excel output</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187890#M12910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; At this point, your best resource is to open a track with Tech Support. While it is true that I am using Office 2013 to open my file, that should NOT make a difference in the syntax. When you run my code, you should be seeing the same justification. Since you are not doing a true "export" to Excel, but are merely creating an XML file for Excel to open, you should be creating XML with the correct instructions to left justify the cell text. Tech Support will be the best ones to help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Feb 2014 13:48:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187890#M12910</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2014-02-27T13:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: ODS excel output</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187891#M12911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What version of the excelxp tag set are you using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Feb 2014 16:52:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187891#M12911</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2014-02-27T16:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: ODS excel output</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187892#M12912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any proc to check version of the excelxp tag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Mar 2014 20:37:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187892#M12912</guid>
      <dc:creator>sunilreddy</dc:creator>
      <dc:date>2014-03-02T20:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: ODS excel output</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187893#M12913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; You should be able to find the version number in the SAS log after your job runs. Look for NOTE: such as shown below, You will find the version number and date that the version was released. This is the version I used to take the screen shot previously posted..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: courier new,courier;"&gt;&lt;STRONG&gt;NOTE: Writing TAGSETS.EXCELXP Body file: c:\temp\examp.xml&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;NOTE: This is the Excel XP tagset (Compatible with SAS 9.1.3 and above, v1.129, 11/07/2011). Add&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;options(doc='help') to the ods statement for more information.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Mar 2014 20:42:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187893#M12913</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2014-03-02T20:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: ODS excel output</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187894#M12914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for ur clarification.&amp;nbsp; I am using v1.94. Any suggestions to aviod right justification for all character variales.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MPRINT(TEST):&amp;nbsp;&amp;nbsp; ods tagsets.excelxp file='/opt/app/SAS/data/export/test_xp.xls' style=sasweb;&lt;/P&gt;&lt;P&gt;NOTE: This is the Excel XP tagset (Compatible with SAS 9.1.3 and above, v1.94, 09/09/12). Add options(doc='help') to the ods &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;statement for more information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Mar 2014 21:54:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187894#M12914</guid>
      <dc:creator>sunilreddy</dc:creator>
      <dc:date>2014-03-02T21:54:58Z</dc:date>
    </item>
    <item>
      <title>Re: ODS excel output</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187895#M12915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Download the latest version and check if that changes things. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Download the code from here and run it, you don't need install privileges or admin rights.&lt;/P&gt;&lt;P&gt;Page:&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="https://support.sas.com/rnd/base/ods/odsmarkup/" title="https://support.sas.com/rnd/base/ods/odsmarkup/"&gt;Base SAS: ODS MARKUP&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Download Tagset link:&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.sas.com/rnd/base/ods/odsmarkup/excltags.tpl"&gt;ExcelXP&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Mar 2014 23:14:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-output/m-p/187895#M12915</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-03-02T23:14:39Z</dc:date>
    </item>
  </channel>
</rss>

