<?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: After proc import of csv file some columns in resulting SAS data set missing complete text strin in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656485#M196834</link>
    <description>&lt;P&gt;PROC IMPORT has to guess how to define the variables based only on the information in this particular version of the file.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you write your own data step you get to define the variables.&amp;nbsp; This also useful when you identifiers that LOOK like numbers (like you *_TIN columns) that you should read as character strings because you will never actually use them with any arithmetic operations.&lt;/P&gt;
&lt;P&gt;28 variables is not really much harder than 6.&amp;nbsp; Just copy the column headers and convert them into the variable names you want to use. Could be as simple as just a single INPUT statement.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
  infile 'myfile.csv' dsd truncover firstobs=2;
  input 
    cco_unique_id  :$4.
    cco_tin :$10.
    organization :$30.
    organization_tin :$10.
    practice :$63.
    practice_tin   :$10.
  ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you have any DATE , TIME or DATETIME values then you will want to add a FORMAT statement to attach a format to those variables so they display in a human readable way.&amp;nbsp; But normla character variables and numbers do not need to have formats attached to them.&amp;nbsp; SAS already knows how to display those.&lt;/P&gt;</description>
    <pubDate>Wed, 10 Jun 2020 17:11:55 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2020-06-10T17:11:55Z</dc:date>
    <item>
      <title>After proc import of csv file some columns in resulting SAS data set missing complete text strings</title>
      <link>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656461#M196828</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I am putting together a project for Patient Centered Primary Care Homes (PCPCH).&amp;nbsp; So I import a lot of information from csv files using the usual Proc import coding.&lt;/P&gt;
&lt;P&gt;On the last import which is not huge at all (664 obs - but will serve as my "go to" file for subsequent coding) the first 279 obs are missing some crucial CCO organization (Coordinated Care Organization) information.&amp;nbsp; I did a lot of find / replace from a "master list" of CCO name, organization, practice_name ... and so on to fill in as many of the missing CCOs in the first 279 obs that I could.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After the import from csv to SAS I examined the data set and found that the file looks like the attached example (this is from excel not SAS but illustrates my problem). THe first little block of obs is what the data looks like in the csv file before import.&amp;nbsp; The second is how the data appears in the SAS data file after import. The shaded rows are rows with missing CCOs, the unshaded are complete obs, for our purposes.&amp;nbsp; As you can see only the first 'byte' of the both the numeric (CCO_TIN, Organization_TIN, Practice_TIN) and text str (CCO_unique_ID, Organization, Practice)&lt;/P&gt;
&lt;P&gt;show in the data set.&amp;nbsp; Recall, that the obs from 280 through 664 have/had all these column values populated; now rows 280 through 664 have only one&amp;nbsp; byte showing.&lt;/P&gt;
&lt;P&gt;When I do a 'View Columns' on the data set this is what is shown:&lt;/P&gt;
&lt;P&gt;Name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Type&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Length&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Format&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Informat&lt;/P&gt;
&lt;P&gt;cco_unique_id&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; text&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; 4.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; 4.&lt;/P&gt;
&lt;P&gt;cco_tin&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; numeric&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 8&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10.&lt;/P&gt;
&lt;P&gt;organization&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; text&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 30&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 30.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 30.&lt;/P&gt;
&lt;P&gt;organization_tin&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; numeric&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 8&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10.&lt;/P&gt;
&lt;P&gt;practice&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; text&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 63&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 65.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 65.&lt;/P&gt;
&lt;P&gt;practice_tin&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; numeric&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 8&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 8.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 8.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your help in the past has always been right on the mark.&amp;nbsp; I can certainly use your&lt;/P&gt;
&lt;P&gt;expertise on this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you in advance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Walt Lierman&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 16:02:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656461#M196828</guid>
      <dc:creator>wlierman</dc:creator>
      <dc:date>2020-06-10T16:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: After proc import of csv file some columns in resulting SAS data set missing complete text strin</title>
      <link>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656465#M196829</link>
      <description>&lt;P&gt;If you need help with a CSV file, we need to see that file, not what Excel thinks of it. Excel does all kinds of crap when opening CSV files, so screenshots from it or Excel files are mostly useless.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please open the CSV file with an editor (e.g. Notepad++) and copy/paste the contents into a window opened with this button:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg"&gt;&lt;img src="https://communities.sas.com/skins/images/2FD96521DCF95C42FE57BF2A7CB72678/responsive_peak/images/image_not_found.png" alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Alternatively, rename the file with a .txt extension and attach it to your post.&lt;/P&gt;
&lt;P&gt;Next, to reliably read text files, do not use PROC IMPORT, but a custom-written DATA step where you define the columns as documented.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 16:12:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656465#M196829</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-06-10T16:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: After proc import of csv file some columns in resulting SAS data set missing complete text strin</title>
      <link>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656466#M196830</link>
      <description>&lt;P&gt;Why are you using PROC IMPORT to read a text file that appears to have only 6 or 7 columns?&lt;/P&gt;
&lt;P&gt;Just write a data step to read the file.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 16:13:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656466#M196830</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-06-10T16:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: After proc import of csv file some columns in resulting SAS data set missing complete text strin</title>
      <link>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656469#M196831</link>
      <description>Hi Tom,&lt;BR /&gt;There are about 22 columns in the file.&amp;nbsp; The problems are centered on the 6 columns that are shown the post. The remainder of the columns lie to right.&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;Walt&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Jun 2020 16:27:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656469#M196831</guid>
      <dc:creator>wlierman</dc:creator>
      <dc:date>2020-06-10T16:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: After proc import of csv file some columns in resulting SAS data set missing complete text strin</title>
      <link>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656472#M196832</link>
      <description>Hello Kurt,&lt;BR /&gt;I liked your response.&amp;nbsp; But I will send the entire csv file as a text.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Jun 2020 16:32:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656472#M196832</guid>
      <dc:creator>wlierman</dc:creator>
      <dc:date>2020-06-10T16:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: After proc import of csv file some columns in resulting SAS data set missing complete text strin</title>
      <link>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656479#M196833</link>
      <description>&lt;P&gt;Hello Kurt,&lt;/P&gt;
&lt;P&gt;I took the second method that you suggested: renaming the file with a .txt extension and attaching it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your time and effort.&amp;nbsp; I appreciate it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Walt Lierman&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 17:03:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656479#M196833</guid>
      <dc:creator>wlierman</dc:creator>
      <dc:date>2020-06-10T17:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: After proc import of csv file some columns in resulting SAS data set missing complete text strin</title>
      <link>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656485#M196834</link>
      <description>&lt;P&gt;PROC IMPORT has to guess how to define the variables based only on the information in this particular version of the file.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you write your own data step you get to define the variables.&amp;nbsp; This also useful when you identifiers that LOOK like numbers (like you *_TIN columns) that you should read as character strings because you will never actually use them with any arithmetic operations.&lt;/P&gt;
&lt;P&gt;28 variables is not really much harder than 6.&amp;nbsp; Just copy the column headers and convert them into the variable names you want to use. Could be as simple as just a single INPUT statement.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
  infile 'myfile.csv' dsd truncover firstobs=2;
  input 
    cco_unique_id  :$4.
    cco_tin :$10.
    organization :$30.
    organization_tin :$10.
    practice :$63.
    practice_tin   :$10.
  ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you have any DATE , TIME or DATETIME values then you will want to add a FORMAT statement to attach a format to those variables so they display in a human readable way.&amp;nbsp; But normla character variables and numbers do not need to have formats attached to them.&amp;nbsp; SAS already knows how to display those.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 17:11:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656485#M196834</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-06-10T17:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: After proc import of csv file some columns in resulting SAS data set missing complete text strin</title>
      <link>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656493#M196837</link>
      <description>&lt;P&gt;I really think that using PROC IMPORT is the issue for this file.&amp;nbsp; Because the first few columns have a lot missing values so any attempt by PROC IMPORT to guess at how to define them is going to be wrong, especially if you ultimate goal is to replace the empty values with real values via some algorithm.&amp;nbsp; &amp;nbsp;Using the GUESSINGROWS=MAX statement in PROC IMPORT will help a little, but it will still only be able to guess how to define the variables based on the values seen. So just take the five minutes it will take to copy the column header and turn it into an INPUT or LENGTH statement so you can properly define the variables.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Minor point your file isn't technically a Comma Separated Values file since the delimiter being used is a TAB instead of comma, but that doesn't really impact how to deal with the file other that you will need to specify the delimiter on your INFILE statement.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 17:37:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656493#M196837</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-06-10T17:37:55Z</dc:date>
    </item>
    <item>
      <title>Re: After proc import of csv file some columns in resulting SAS data set missing complete text strin</title>
      <link>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656495#M196838</link>
      <description>&lt;P&gt;Thank you Tom.&lt;/P&gt;
&lt;P&gt;Great solution.&amp;nbsp; Kurt is looking over the entire csv file.&amp;nbsp; He has the same concerns (and perhaps a&lt;/P&gt;
&lt;P&gt;few more) about using the Proc Import route.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I appreciate your time and help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Walt&lt;/P&gt;
&lt;P&gt;wlierman&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 17:51:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656495#M196838</guid>
      <dc:creator>wlierman</dc:creator>
      <dc:date>2020-06-10T17:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: After proc import of csv file some columns in resulting SAS data set missing complete text strin</title>
      <link>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656497#M196839</link>
      <description>Tom,&lt;BR /&gt;Thank you for your insights and corrections.&lt;BR /&gt;Walt Liermanwlierman&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Jun 2020 17:57:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/After-proc-import-of-csv-file-some-columns-in-resulting-SAS-data/m-p/656497#M196839</guid>
      <dc:creator>wlierman</dc:creator>
      <dc:date>2020-06-10T17:57:12Z</dc:date>
    </item>
  </channel>
</rss>

