<?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: Creating a .csv File in Microsoft Integration with SAS</title>
    <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Creating-a-csv-File/m-p/75522#M1039</link>
    <description>What SAS code are you using to create the CSV?  For example, if you are using ODS CSV and combining that code with PROC PRINT, you can specify the LABEL parameter in PROC PRINT to use the LABEL instead of the variable name.  If not using PROC PRINT, please share the SAS code you are using to generate the CSV.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
    <pubDate>Wed, 25 Feb 2009 23:32:56 GMT</pubDate>
    <dc:creator>sbb</dc:creator>
    <dc:date>2009-02-25T23:32:56Z</dc:date>
    <item>
      <title>Creating a .csv File</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Creating-a-csv-File/m-p/75521#M1038</link>
      <description>When I create a .csv file is there any way to have the Label put into the first line instead of the Var Name?</description>
      <pubDate>Wed, 25 Feb 2009 16:17:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Creating-a-csv-File/m-p/75521#M1038</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-02-25T16:17:21Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a .csv File</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Creating-a-csv-File/m-p/75522#M1039</link>
      <description>What SAS code are you using to create the CSV?  For example, if you are using ODS CSV and combining that code with PROC PRINT, you can specify the LABEL parameter in PROC PRINT to use the LABEL instead of the variable name.  If not using PROC PRINT, please share the SAS code you are using to generate the CSV.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Wed, 25 Feb 2009 23:32:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Creating-a-csv-File/m-p/75522#M1039</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-02-25T23:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a .csv File</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Creating-a-csv-File/m-p/75523#M1040</link>
      <description>I'm not using ODS - just a simple Proc Export:&lt;BR /&gt;
&lt;BR /&gt;
   PROC EXPORT DATA= mdata.fnl_adam_mems&lt;BR /&gt;
            OUTFILE="c:mdata\fnl_adam_mems.csv" &lt;BR /&gt;
            DBMS=CSV REPLACE;&lt;BR /&gt;
   RUN;</description>
      <pubDate>Tue, 03 Mar 2009 20:39:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Creating-a-csv-File/m-p/75523#M1040</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-03-03T20:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a .csv File</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Creating-a-csv-File/m-p/75524#M1041</link>
      <description>After visiting the SAS support website  &lt;A href="http://support.sas.com/" target="_blank"&gt;http://support.sas.com/&lt;/A&gt;  I did a search using the argument "proc export label column" and one of the search results is the link below:&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/12/754.html" target="_blank"&gt;http://support.sas.com/kb/12/754.html&lt;/A&gt; &lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Tue, 03 Mar 2009 23:04:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Creating-a-csv-File/m-p/75524#M1041</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-03-03T23:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a .csv File</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Creating-a-csv-File/m-p/75525#M1042</link>
      <description>Hi Scott,&lt;BR /&gt;
&lt;BR /&gt;
Thanks so much for your help. None of the Documentation I have included the LABEL parameter - how frustrating that the solution was so simple!&lt;BR /&gt;
&lt;BR /&gt;
Liz</description>
      <pubDate>Wed, 04 Mar 2009 15:56:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Creating-a-csv-File/m-p/75525#M1042</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-03-04T15:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a .csv File</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Creating-a-csv-File/m-p/75526#M1043</link>
      <description>[pre]&lt;BR /&gt;
ods csv file='csvWithLabels.csv';&lt;BR /&gt;
proc print label noobs data=sashelp.shoes(obs=20);&lt;BR /&gt;
   run;&lt;BR /&gt;
ods csv close;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Wed, 04 Mar 2009 21:04:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Creating-a-csv-File/m-p/75526#M1043</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2009-03-04T21:04:01Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a .csv File</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Creating-a-csv-File/m-p/75527#M1044</link>
      <description>Apparently I spoke too soon. When I run the following Proc Export code I get an error message stating that the (LABEL) option is not recognized:&lt;BR /&gt;
PROC EXPORT DATA=contents 	            OUTFILE="S:\Mdata\contents.csv" DBMS=CSV REPLACE LABEL;&lt;BR /&gt;
RUN;&lt;BR /&gt;
&lt;BR /&gt;
What am I doing wrong?</description>
      <pubDate>Fri, 17 Apr 2009 16:24:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Creating-a-csv-File/m-p/75527#M1044</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-04-17T16:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a .csv File</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Creating-a-csv-File/m-p/75528#M1045</link>
      <description>I figured it out - we are using SAS 9.1.3 and LABEL will be available in 9.2</description>
      <pubDate>Fri, 17 Apr 2009 16:35:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Creating-a-csv-File/m-p/75528#M1045</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-04-17T16:35:24Z</dc:date>
    </item>
  </channel>
</rss>

