<?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: Facing problem in creating columns from CSV file in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408740#M99819</link>
    <description>&lt;P&gt;add the GUESSINGROWS option and set it to MAX&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;guessingrows = max;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The first observations must be shorter so the record gets truncated. It's best to use a data step in these cases (check your log) but setting GUESSINGROWS is another lazy option, but not recommended for long term use.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 30 Oct 2017 15:26:04 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2017-10-30T15:26:04Z</dc:date>
    <item>
      <title>Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408157#M99561</link>
      <description>&lt;P&gt;I have converted the CSV file into SAS but I am unable to find any solution for separating the columns. There are two variables one is the Date (DDMMYY) and the other is the Spot Prices of Oil. Please help&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 20:13:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408157#M99561</guid>
      <dc:creator>saugatasantra84</dc:creator>
      <dc:date>2017-10-27T20:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408186#M99571</link>
      <description>&lt;P&gt;Please post your code and log.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you can, include the sample file.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Otherwise, search on here and you'll find multiple suggestions on how to import data - using PROC IMPORT is a quick way as well.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 21:50:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408186#M99571</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-10-27T21:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408195#M99577</link>
      <description>&lt;P&gt;Separate what? Into what? Using what rules?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And did you read the data with a data step or import using a wizard or proc import code?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It may not hurt to post the result of proc contents here as well. That way we will know whether your variable(s) are numeric or character, which may not be obvious pasting values.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 23:10:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408195#M99577</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-10-27T23:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408231#M99591</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="SpotPrices" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/16271iFA9D0B26924B990F/image-size/large?v=v2&amp;amp;px=999" role="button" title="SpotPrices.png" alt="SpotPrices" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;SpotPrices&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;The code that i had used to convert the csv file was&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc import datafile = "Path\daily-spot-prices-for-heating-oil-1986-march-2016.csv"&lt;/P&gt;&lt;P&gt;out = mylib.Spotprices&lt;/P&gt;&lt;P&gt;dbms = tab&lt;/P&gt;&lt;P&gt;replace;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Oct 2017 10:56:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408231#M99591</guid>
      <dc:creator>saugatasantra84</dc:creator>
      <dc:date>2017-10-28T10:56:47Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408238#M99594</link>
      <description>&lt;P&gt;You are using the wrong delimiter in proc import, try:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import datafile = "Path\daily-spot-prices-for-heating-oil-1986-march-2016.csv"
out = mylib.Spotprices
dbms = dlm
replace;
delimiter=";";
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Oct 2017 13:58:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408238#M99594</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2017-10-28T13:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408259#M99600</link>
      <description>&lt;P&gt;Why would you ever use PROC IMPORT to read a file with 4 columns?&lt;/P&gt;
&lt;P&gt;It is more work to write the PROC IMPORT code than to write the DATA step code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With a DATA step you have complete control over how SAS is reading the data including what variable names to use and what labels to attach to the variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You data file has the date in three variables. You can combine them to create an actual date variable.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want ;
  infile 'myfile.csv' dsd dlm=';' firstobs=2 truncover ;
  length Year 8 Month $20 Day 8 FOB 8 ;
  label fob='New York Harbor No. 2 Heating Oil Spot Price FOB (Dollars per Gallon)';
  input year month day fob ;
  date = input(cats(day,substr(month,1,3),year),date9.);
  format date date9.;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Once you have actual date and value pairs you then use SAS procedures to analyze the data.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=want; by date; run;
PROC SGPLOT DATA = Want;
 SERIES X = date Y = fob;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/16317i3D4ADB2304735536/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 18:49:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408259#M99600</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-10-30T18:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408271#M99607</link>
      <description>&lt;P&gt;DBMS =TAB means your delimiter is a tab.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since your file is a CSV try DBMS=CSV&lt;/P&gt;</description>
      <pubDate>Sat, 28 Oct 2017 17:37:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408271#M99607</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-10-28T17:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408713#M99812</link>
      <description>&lt;P&gt;Many thanks it is working but one problem i am finding is the last column where words have not come in full,&lt;/P&gt;&lt;P&gt;New York Harbor No. 2 Heating Oil Spot Price FOB (Dollars per Gallon) (this is the full label that should have come but instead it is displaying (New_York_Harbor_No__2_Heating_Oi), so what can i do to give a full label name? Please suggest with codes&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 14:55:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408713#M99812</guid>
      <dc:creator>saugatasantra84</dc:creator>
      <dc:date>2017-10-30T14:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408720#M99813</link>
      <description>&lt;P&gt;Post your code, we don't know what solution you're using to make further suggestions about why it's not working the way you want.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 15:02:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408720#M99813</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-10-30T15:02:36Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408739#M99818</link>
      <description>&lt;P&gt;proc import datafile = "E:\Analytics_Backup_Acche\daily-spot-prices-for-heating-oil-1986-march-2016.csv"&lt;BR /&gt;out = mylib.SpotPrices&lt;BR /&gt;dbms = dlm&lt;BR /&gt;replace;&lt;BR /&gt;delimiter = ";";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is running fine but the last column has text exceeding 32 characters hence it is not coming full, so what to do&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 15:24:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408739#M99818</guid>
      <dc:creator>saugatasantra84</dc:creator>
      <dc:date>2017-10-30T15:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408740#M99819</link>
      <description>&lt;P&gt;add the GUESSINGROWS option and set it to MAX&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;guessingrows = max;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The first observations must be shorter so the record gets truncated. It's best to use a data step in these cases (check your log) but setting GUESSINGROWS is another lazy option, but not recommended for long term use.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 15:26:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408740#M99819</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-10-30T15:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408751#M99825</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/174236"&gt;@saugatasantra84&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;proc import datafile = "E:\Analytics_Backup_Acche\daily-spot-prices-for-heating-oil-1986-march-2016.csv"&lt;BR /&gt;out = mylib.SpotPrices&lt;BR /&gt;dbms = dlm&lt;BR /&gt;replace;&lt;BR /&gt;delimiter = ";";&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;this is running fine but the last column has text exceeding 32 characters hence it is not coming full, so what to do&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Why would there be anything to do?&amp;nbsp; You cannot have a variable name that is longer than 32 characters (and why in the world would you want one?).&amp;nbsp; Run proc contents and you should see that the original column headers are used as the variable labels.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc contents data=mylib.SpotPrices;
run;

proc print label data=mylib.SpotPrices;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 30 Oct 2017 15:37:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408751#M99825</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-10-30T15:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408753#M99826</link>
      <description>its not working</description>
      <pubDate>Mon, 30 Oct 2017 15:39:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408753#M99826</guid>
      <dc:creator>saugatasantra84</dc:creator>
      <dc:date>2017-10-30T15:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408755#M99827</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/174236"&gt;@saugatasantra84&lt;/a&gt; wrote:&lt;BR /&gt;its not working&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What does that mean?&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 15:42:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408755#M99827</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-10-30T15:42:38Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408785#M99836</link>
      <description>&lt;P&gt;let me put things into perspective, I had imported a csv file now after importing it the last column heading label was incomplete (since it was exceeding 32 characters) so that why I was asking for help if any further code can be applied to increase the label??&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 16:36:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408785#M99836</guid>
      <dc:creator>saugatasantra84</dc:creator>
      <dc:date>2017-10-30T16:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408790#M99839</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/174236"&gt;@saugatasantra84&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;let me put things into perspective, I had imported a csv file now after importing it the last column heading label was incomplete (since it was exceeding 32 characters) so that why I was asking for help if any further code can be applied to increase the label??&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;As I said before do not use PROC IMPORT to read a delimited file. Especially one with only four columns. You will end up writing more code than if you just wrote the data step to read the file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC IMPORT apparently will NOT convert the raw column header into the label for the variable that it generates. But you could read the column headers from the file yourself and use them to generate LABEL statements.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is worked example, including creating the example CSV file to read.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;* Make a test CSV file ;
filename csv temp;
data _null_;
 file csv dsd;
 put 'This column header is too long to use as a variable name'
   / '1' 
   / '2' 
 ;
run;
* Use PROC IMPORT to make a dataset;
proc import out=test replace datafile=csv dbms=csv ;
run;
* Get the names that PROC IMPORT created ;
proc transpose data=test(obs=0) out=names ;
  var _all_;
run;
* Read the column headers to use as labels ;
data labels ;
  set names(keep=_name_) ;
  infile csv obs=1 dsd truncover ;
  length _label_ $256 ;
  input _label_ @@ ;
run;
* Generate macro variable with name="label" pairs ;
proc sql noprint ;
%let labels=;
  select catx('=',_name_,quote(trim(_label_)))
    into :labels separated by ' '
    from labels
    where _name_ ne _label_
  ;
quit;
* Modify the dataset to have the labels ;
proc datasets nolist lib=work;
  modify test ;
  label &amp;amp;labels ;
  run;
quit;
* Show the definition ;
proc contents data=test;
run;
* Print the data with the labels for column headers ;
proc print data=test label;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/16313iDC7E324608CBF9F7/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 17:22:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408790#M99839</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-10-30T17:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408805#M99841</link>
      <description>&lt;P&gt;The label should be correct by default. The variable name is limited to 32 characters and there's no way around that.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 17:32:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408805#M99841</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-10-30T17:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408810#M99842</link>
      <description>We cannot increase it? or if we want to rename?&lt;BR /&gt;</description>
      <pubDate>Mon, 30 Oct 2017 17:46:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408810#M99842</guid>
      <dc:creator>saugatasantra84</dc:creator>
      <dc:date>2017-10-30T17:46:57Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408814#M99843</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/174236"&gt;@saugatasantra84&lt;/a&gt; wrote:&lt;BR /&gt;We cannot increase it? or if we want to rename?&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You can use the LABEL statement to add a descriptive label for your variaibles.&lt;/P&gt;
&lt;P&gt;You can use the RENAME statement to change the name of a variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 17:54:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408814#M99843</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-10-30T17:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in creating columns from CSV file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408821#M99844</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/174236"&gt;@saugatasantra84&lt;/a&gt; wrote:&lt;BR /&gt;We cannot increase it? or if we want to rename?&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;No you cannot increase. Yes you can rename it, but you're still limited to 32 characters.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 18:06:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Facing-problem-in-creating-columns-from-CSV-file/m-p/408821#M99844</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-10-30T18:06:11Z</dc:date>
    </item>
  </channel>
</rss>

