<?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 report in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/proc-report/m-p/412029#M100736</link>
    <description>&lt;P&gt;"&lt;SPAN&gt;We need output in .CSV format and for same"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;and&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"lignment of values and header using style(header) and style(column) and also some of the colours which i have adjustedwith use of call define"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Are two mutually exclusive things.&amp;nbsp; CSV is a plain text file format, data is present separated by a comma.&amp;nbsp; There is&amp;nbsp;&lt;U&gt;&lt;STRONG&gt;no&lt;/STRONG&gt;&lt;/U&gt; style information.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;What I suspect you are doing is opening this in Excel.&amp;nbsp; CSV&amp;nbsp;&lt;U&gt;&lt;STRONG&gt;is not, and I repeat not&lt;/STRONG&gt;&lt;/U&gt; Excel.&amp;nbsp; Excel contains a CSV read module that will take the text file, and parse data into columns based on the comma.&amp;nbsp; It sill will not have any style.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You need to decide what you really want, a plain text highly useful CSV file for transport of data around, or a fully functioning Excel file with very little in the way of data usability.&amp;nbsp; The first is for data transfer, the second for people to look at and you get the second by using ods tagsets.excelxp or ods excel and output using proc report.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 09 Nov 2017 17:00:38 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2017-11-09T17:00:38Z</dc:date>
    <item>
      <title>proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-report/m-p/412016#M100732</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We need output in .CSV format and for same , i am using ODS csvall .But doing so, i am not getting desired output with respect to alignment of values and header using style(header) and style(column) and also some of the colours which i have adjustedwith use of call define .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you help me if this is the default behaviour or is there any way to do so for csv output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;</description>
      <pubDate>Thu, 09 Nov 2017 16:53:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-report/m-p/412016#M100732</guid>
      <dc:creator>draroda</dc:creator>
      <dc:date>2017-11-09T16:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-report/m-p/412024#M100734</link>
      <description>&lt;P&gt;Using PROC REPORT to generate a CSV file doesn't make sense. Can you explain your requirement more?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CSV don't have columns, they're a text file with comma delimiters.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Nov 2017 16:57:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-report/m-p/412024#M100734</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-11-09T16:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-report/m-p/412029#M100736</link>
      <description>&lt;P&gt;"&lt;SPAN&gt;We need output in .CSV format and for same"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;and&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"lignment of values and header using style(header) and style(column) and also some of the colours which i have adjustedwith use of call define"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Are two mutually exclusive things.&amp;nbsp; CSV is a plain text file format, data is present separated by a comma.&amp;nbsp; There is&amp;nbsp;&lt;U&gt;&lt;STRONG&gt;no&lt;/STRONG&gt;&lt;/U&gt; style information.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;What I suspect you are doing is opening this in Excel.&amp;nbsp; CSV&amp;nbsp;&lt;U&gt;&lt;STRONG&gt;is not, and I repeat not&lt;/STRONG&gt;&lt;/U&gt; Excel.&amp;nbsp; Excel contains a CSV read module that will take the text file, and parse data into columns based on the comma.&amp;nbsp; It sill will not have any style.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You need to decide what you really want, a plain text highly useful CSV file for transport of data around, or a fully functioning Excel file with very little in the way of data usability.&amp;nbsp; The first is for data transfer, the second for people to look at and you get the second by using ods tagsets.excelxp or ods excel and output using proc report.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Nov 2017 17:00:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-report/m-p/412029#M100736</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-11-09T17:00:38Z</dc:date>
    </item>
  </channel>
</rss>

