<?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: How do you force a column variable to be character, not numeric? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555033#M74691</link>
    <description>&lt;P&gt;The point of saving it as a CSV file was so you could read it with a data step that you created. That way you have control over how the variables are defined.&amp;nbsp; Using PROC IMPORT on a CSV file is probably even more volatile than using it on an XLSX file. At least an XLSX file has some potential to have metadata about what types of values a column (variable) contains.&amp;nbsp; A CSV file only have text for all values.&lt;/P&gt;</description>
    <pubDate>Tue, 30 Apr 2019 13:50:35 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2019-04-30T13:50:35Z</dc:date>
    <item>
      <title>How do you force a column variable to be character, not numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/554840#M74685</link>
      <description>&lt;P&gt;How do I force the itemCode variable to be character, not numeric?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC IMPORT DATAFILE= "&amp;amp;drive\ACPSA_Items\Item_Partials\&amp;amp;prodyr\ACPSA_Items_Partials_56.xlsx"&lt;BR /&gt;OUT= tempsas.itemACPSA_56&lt;BR /&gt;DBMS=xlsx REPLACE;&lt;BR /&gt;SHEET="Item_Partial_List_56";&lt;BR /&gt;GETNAMES=YES;&lt;BR /&gt;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2134 PROC IMPORT DATAFILE= "&amp;amp;drive\ACPSA_Items\Item_Partials\&amp;amp;prodyr\ACPSA_Items_Partials_56.xlsx"&lt;BR /&gt;SYMBOLGEN: Macro variable DRIVE resolves to j:\IEA Products\ACPSA&lt;BR /&gt;SYMBOLGEN: Macro variable PRODYR resolves to 2019&lt;BR /&gt;2135 OUT= tempsas.itemACPSA_56&lt;BR /&gt;2136 DBMS=xlsx REPLACE;&lt;BR /&gt;2137 SHEET="Item_Partial_List_56";&lt;BR /&gt;2138 GETNAMES=YES;&lt;BR /&gt;2139&lt;BR /&gt;2140 run;&lt;/P&gt;&lt;P&gt;NOTE: The import data set has 1 observations and 28 variables.&lt;BR /&gt;NOTE: TEMPSAS.ITEMACPSA_56 data set was successfully created.&lt;BR /&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;BR /&gt;real time 0.04 seconds&lt;BR /&gt;cpu time 0.03 seconds&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="itemCode.JPG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/29107i7A8350A0D1482E40/image-size/large?v=v2&amp;amp;px=999" role="button" title="itemCode.JPG" alt="itemCode.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2019 19:58:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/554840#M74685</guid>
      <dc:creator>Afor910327</dc:creator>
      <dc:date>2019-04-29T19:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: How do you force a column variable to be character, not numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/554853#M74686</link>
      <description>&lt;P&gt;PUT() converts a variable to character. You cannot control types when reading in excel, because Excel does not enforce types on the field.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set sashelp.class;

age_char = put(age, 8. -l);

run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/105695"&gt;@Afor910327&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;How do I force the itemCode variable to be character, not numeric?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC IMPORT DATAFILE= "&amp;amp;drive\ACPSA_Items\Item_Partials\&amp;amp;prodyr\ACPSA_Items_Partials_56.xlsx"&lt;BR /&gt;OUT= tempsas.itemACPSA_56&lt;BR /&gt;DBMS=xlsx REPLACE;&lt;BR /&gt;SHEET="Item_Partial_List_56";&lt;BR /&gt;GETNAMES=YES;&lt;BR /&gt;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2134 PROC IMPORT DATAFILE= "&amp;amp;drive\ACPSA_Items\Item_Partials\&amp;amp;prodyr\ACPSA_Items_Partials_56.xlsx"&lt;BR /&gt;SYMBOLGEN: Macro variable DRIVE resolves to j:\IEA Products\ACPSA&lt;BR /&gt;SYMBOLGEN: Macro variable PRODYR resolves to 2019&lt;BR /&gt;2135 OUT= tempsas.itemACPSA_56&lt;BR /&gt;2136 DBMS=xlsx REPLACE;&lt;BR /&gt;2137 SHEET="Item_Partial_List_56";&lt;BR /&gt;2138 GETNAMES=YES;&lt;BR /&gt;2139&lt;BR /&gt;2140 run;&lt;/P&gt;
&lt;P&gt;NOTE: The import data set has 1 observations and 28 variables.&lt;BR /&gt;NOTE: TEMPSAS.ITEMACPSA_56 data set was successfully created.&lt;BR /&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;BR /&gt;real time 0.04 seconds&lt;BR /&gt;cpu time 0.03 seconds&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="itemCode.JPG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/29107i7A8350A0D1482E40/image-size/large?v=v2&amp;amp;px=999" role="button" title="itemCode.JPG" alt="itemCode.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2019 20:57:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/554853#M74686</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-04-29T20:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: How do you force a column variable to be character, not numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/554857#M74687</link>
      <description>&lt;P&gt;If you want it to be character in the SAS dataset then make sure that it is character in the XLSX file.&lt;/P&gt;
&lt;P&gt;Also I think that all of the cells in that column are empty in the XLSX file then SAS will make it numeric.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2019 21:23:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/554857#M74687</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-04-29T21:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: How do you force a column variable to be character, not numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/554864#M74688</link>
      <description>&lt;P&gt;Save the XLSX to CSV and write a data step to read the CSV file. You can specify consistent variable names, types, lengths and informats.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Every time you use Proc Import a different set of &lt;STRONG&gt;guesses&lt;/STRONG&gt; is made by the procedure and with XLSX files made after examining a very small number of rows. So if you have different spreadsheets that supposedly have the same layout you can get different variable lengths and types, if not variable names depending on what is going in with whatever makes the spreadsheet file.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2019 21:45:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/554864#M74688</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-04-29T21:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do you force a column variable to be character, not numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555030#M74689</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did it, and it does not even import it. I made sure it was saved as a csv file.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC IMPORT DATAFILE= "&amp;amp;drive\ACPSA_Items\Item_Partials\&amp;amp;prodyr\ACPSA_Items_Partials_56.csv"&lt;BR /&gt;OUT= tempsas.itemACPSA_56&lt;BR /&gt;DBMS=csv REPLACE;&lt;BR /&gt;SHEET="Item_Partial_List_56";&lt;BR /&gt;GETNAMES=YES;&lt;BR /&gt;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2019 13:46:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555030#M74689</guid>
      <dc:creator>Afor910327</dc:creator>
      <dc:date>2019-04-30T13:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: How do you force a column variable to be character, not numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555032#M74690</link>
      <description>&lt;P&gt;I did it, and SAS still read it as a numeric.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2019 13:50:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555032#M74690</guid>
      <dc:creator>Afor910327</dc:creator>
      <dc:date>2019-04-30T13:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: How do you force a column variable to be character, not numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555033#M74691</link>
      <description>&lt;P&gt;The point of saving it as a CSV file was so you could read it with a data step that you created. That way you have control over how the variables are defined.&amp;nbsp; Using PROC IMPORT on a CSV file is probably even more volatile than using it on an XLSX file. At least an XLSX file has some potential to have metadata about what types of values a column (variable) contains.&amp;nbsp; A CSV file only have text for all values.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2019 13:50:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555033#M74691</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-04-30T13:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: How do you force a column variable to be character, not numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555044#M74692</link>
      <description>&lt;P&gt;That seems strange. That is not what it does for me with SAS 9.4m5.&lt;/P&gt;
&lt;P&gt;I made a simple text XLSX file.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 523px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/29122iDC1774ECC3AD993B/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;And the read it into a SAS dataset using PROC IMPORT with DBMS=XLSX.&lt;/P&gt;
&lt;PRE&gt;1820  proc import datafile='c:\downloads\xlsx_type_test.xlsx' dbms=xlsx
1821    out=test1 replace
1822  ;
1823  run;

NOTE: One or more variables were converted because the data type is not supported by the V9 engine. For
      more details, run with options MSGLEVEL=I.
NOTE: The import data set has 2 observations and 6 variables.
NOTE: WORK.TEST1 data set was successfully created.
NOTE: PROCEDURE IMPORT used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds


1824
1825  proc contents data=test1 varnum;
1826  run;

NOTE: PROCEDURE CONTENTS used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds


1827  proc print data=test1; run;

NOTE: There were 2 observations read from the data set WORK.TEST1.
NOTE: PROCEDURE PRINT used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
&lt;/PRE&gt;
&lt;P&gt;And it made the column will only empty cells as character variable of length $1.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 562px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/29123i081B3CC4CB778311/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2019 14:03:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555044#M74692</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-04-30T14:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: How do you force a column variable to be character, not numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555078#M74696</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/105695"&gt;@Afor910327&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I did it, and it does not even import it. I made sure it was saved as a csv file.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC IMPORT DATAFILE= "&amp;amp;drive\ACPSA_Items\Item_Partials\&amp;amp;prodyr\ACPSA_Items_Partials_56.csv"&lt;BR /&gt;OUT= tempsas.itemACPSA_56&lt;BR /&gt;DBMS=csv REPLACE;&lt;BR /&gt;SHEET="Item_Partial_List_56";&lt;BR /&gt;GETNAMES=YES;&lt;BR /&gt;&lt;BR /&gt;run;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If it did not import anything then there was some error. What did the LOG show after you run this code? SHEET is not a valid option for CSV. You would also want to use GUESSINGROWS=MAX; to examine more rows of the data before setting the variable properties.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ALWAYS check the log.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And a sideline: The log will have a basic data step program that you can modify as needed. Copy from the Log and paste into the editor and clean up.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2019 15:06:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555078#M74696</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-04-30T15:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: How do you force a column variable to be character, not numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555079#M74697</link>
      <description>&lt;P&gt;Hi Ballard,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is the log:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2037 PROC IMPORT DATAFILE= "&amp;amp;drive\ACPSA_Items\Item_Partials\&amp;amp;prodyr\ACPSA_Items_Partials_56.csv"&lt;BR /&gt;SYMBOLGEN: Macro variable DRIVE resolves to j:\IEA Products\ACPSA&lt;BR /&gt;SYMBOLGEN: Macro variable PRODYR resolves to 2019&lt;BR /&gt;2038 OUT= tempsas.itemACPSA_56&lt;BR /&gt;2039 DBMS=csv REPLACE;&lt;BR /&gt;NOTE: The previous statement has been deleted.&lt;BR /&gt;NOTE: The previous statement has been deleted.&lt;BR /&gt;2040 SHEET="Item_Partial_List_56";&lt;BR /&gt;-----&lt;BR /&gt;180&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;2041 GETNAMES=YES;&lt;BR /&gt;2042&lt;BR /&gt;2043 run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2019 15:11:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555079#M74697</guid>
      <dc:creator>Afor910327</dc:creator>
      <dc:date>2019-04-30T15:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do you force a column variable to be character, not numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555097#M74698</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/105695"&gt;@Afor910327&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Ballard,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below is the log:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2037 PROC IMPORT DATAFILE= "&amp;amp;drive\ACPSA_Items\Item_Partials\&amp;amp;prodyr\ACPSA_Items_Partials_56.csv"&lt;BR /&gt;SYMBOLGEN: Macro variable DRIVE resolves to j:\IEA Products\ACPSA&lt;BR /&gt;SYMBOLGEN: Macro variable PRODYR resolves to 2019&lt;BR /&gt;2038 OUT= tempsas.itemACPSA_56&lt;BR /&gt;2039 DBMS=csv REPLACE;&lt;BR /&gt;NOTE: The previous statement has been deleted.&lt;BR /&gt;NOTE: The previous statement has been deleted.&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT color="#ff0000"&gt;2040 SHEET="Item_Partial_List_56";&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;-----&lt;BR /&gt;180&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;
&lt;P&gt;2041 GETNAMES=YES;&lt;BR /&gt;2042&lt;BR /&gt;2043 run;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;As I mentioned, SHEET is not a valid statement when importing CSV. Remove it.&lt;/P&gt;
&lt;P&gt;Do add: GUESSINGROWS=MAX;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2019 15:50:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555097#M74698</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-04-30T15:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: How do you force a column variable to be character, not numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555168#M74699</link>
      <description>Nothing has really helped, now I was able to import it as a csv file, then I get everything stringed into one line as if it was one variable for the entire row.</description>
      <pubDate>Tue, 30 Apr 2019 18:44:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555168#M74699</guid>
      <dc:creator>Afor910327</dc:creator>
      <dc:date>2019-04-30T18:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do you force a column variable to be character, not numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555192#M74700</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/105695"&gt;@Afor910327&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Nothing has really helped, now I was able to import it as a csv file, then I get everything stringed into one line as if it was one variable for the entire row.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That is usually a sign that you told SAS to use the wrong delimiter. If you have a "real" Comma Separated Values file then the delimiter is a comma.&amp;nbsp; But many people generate files using other delimiters and still call them CSV files.&amp;nbsp; For example in places where they use comma as the decimal place character the standard usage is to use semi-colon as the delimiter in "CSV" files.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2019 19:45:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555192#M74700</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-04-30T19:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: How do you force a column variable to be character, not numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555194#M74701</link>
      <description>Show your code and log. And ideally include a small subset or snapshot of your data.</description>
      <pubDate>Tue, 30 Apr 2019 19:51:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-you-force-a-column-variable-to-be-character-not-numeric/m-p/555194#M74701</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-04-30T19:51:36Z</dc:date>
    </item>
  </channel>
</rss>

