<?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 to convert a hierarchy file into a flat file in SAS? in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/553362#M9361</link>
    <description>Libname option is still there. What version of SAS are you using? You can find it using the following:&lt;BR /&gt;&lt;BR /&gt;proc product_status;run;&lt;BR /&gt;&lt;BR /&gt;This is a quick example of how to read that file:&lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/How-can-I-import-XML-file-into-SAS/m-p/283948/highlight/true#M57913" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/How-can-I-import-XML-file-into-SAS/m-p/283948/highlight/true#M57913&lt;/A&gt;</description>
    <pubDate>Tue, 23 Apr 2019 17:39:01 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-04-23T17:39:01Z</dc:date>
    <item>
      <title>How to convert a hierarchy file into a flat file in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/552284#M9160</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="photo2.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28808i7DBFC8EC9717EB9A/image-size/large?v=v2&amp;amp;px=999" role="button" title="photo2.png" alt="photo2.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2019 19:11:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/552284#M9160</guid>
      <dc:creator>SAS_usercanada</dc:creator>
      <dc:date>2019-04-18T19:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a hierarchy file into a flat file in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/552314#M9166</link>
      <description>&lt;P&gt;1. Import the data set&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2.&amp;nbsp; I would start by creating an ID field first to know which rows go together.&lt;/P&gt;
&lt;P&gt;Then combine them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;*add IDNUBMER to each row;

data import_Add_ID;
set importData;

retain ID;
if not missing(IDNumber) then ID=IDNumber;

run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And to combine them now:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
update import_add_ID (obs=0) import_add_ID;
by ID; *this is new id variable created in previous step;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hope that gets you started. If you have further questions please post back.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;FYI - I'm assuming this is actually an Excel file. If it's JSON or XML there are better options, but since you said flat file, I'm assuming a text file that Excel is reading.&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/271176"&gt;@SAS_usercanada&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="photo2.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28808i7DBFC8EC9717EB9A/image-size/large?v=v2&amp;amp;px=999" role="button" title="photo2.png" alt="photo2.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2019 19:50:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/552314#M9166</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-04-18T19:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a hierarchy file into a flat file in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/552322#M9170</link>
      <description>&lt;P&gt;if one more variable is added at the end of&amp;nbsp; the old dataset, this new variable can have several lines with different value for the same IDNumber, how to keep those records for the same IDNumber.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2019 20:08:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/552322#M9170</guid>
      <dc:creator>SAS_usercanada</dc:creator>
      <dc:date>2019-04-18T20:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a hierarchy file into a flat file in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/552345#M9174</link>
      <description>&lt;P&gt;I don't know what that means. Can you please illustrate that with some data - preferably as text.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/271176"&gt;@SAS_usercanada&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;if one more variable is added at the end of&amp;nbsp; the old dataset, this new variable can have several lines with different value for the same IDNumber, how to keep those records for the same IDNumber.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2019 20:46:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/552345#M9174</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-04-18T20:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a hierarchy file into a flat file in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/552369#M9179</link>
      <description>&lt;P&gt;If you post an example of the data as TEXT, assuming your data starts as text, we might be able to provide working code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Copy enough lines of the data to show 3 or 4 sets of records, then on the forum open a code box using either the {I} or the "running man" icons on the menu bar. This box is&lt;STRONG&gt; very important&lt;/STRONG&gt; as the main message window will reformat text making it not the same as your source file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or if your data is in a spread sheet you might try saving to a text file with SPACE as a delimiter.&lt;/P&gt;
&lt;P&gt;Unless your file has differing numbers of rows per record then this should not be a problem.&lt;/P&gt;
&lt;P&gt;And example of reading a TEXT file with random numbers of spaces before the values:&lt;/P&gt;
&lt;PRE&gt;data example ;
   input idnumber :$10. 
         /lastname :$15.
         /firstname :$15.
         /dateofbirth :yymmdd10.
         /gender
         /maritalstatus
         /dependants
   ;
   format dateofbirth date9.;
datalines;
ASAAFFF
     Anderson
          Rose
              1947-04-30
                 1
                    1
                        99
;
run;&lt;/PRE&gt;
&lt;P&gt;The / in the input statement says to "read on the next line".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2019 22:14:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/552369#M9179</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-04-18T22:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a hierarchy file into a flat file in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/553251#M9343</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="if several new variables are added to the dataset, I need to keep all these records." style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28939iDF1F2D349F786A38/image-size/large?v=v2&amp;amp;px=999" role="button" title="photo2.png" alt="if several new variables are added to the dataset, I need to keep all these records." /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;if several new variables are added to the dataset, I need to keep all these records.&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2019 13:42:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/553251#M9343</guid>
      <dc:creator>SAS_usercanada</dc:creator>
      <dc:date>2019-04-23T13:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a hierarchy file into a flat file in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/553281#M9346</link>
      <description>Text please, not images and this is still unclear. How would you like that data to be shown? Show exactly what you have to start with and what you want as output. Is it a new record for each line? Is it the max/min of certain fields?</description>
      <pubDate>Tue, 23 Apr 2019 14:43:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/553281#M9346</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-04-23T14:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a hierarchy file into a flat file in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/553311#M9352</link>
      <description>&lt;P&gt;the data should show as a flat file. if there is a new taskid, a new record for the same IDNumber&amp;nbsp;should be created.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IDNumber lastName&amp;nbsp;firstName dateOfBirth&amp;nbsp;gender&amp;nbsp;maritalStatus&amp;nbsp;numberOfDependantChildren&amp;nbsp;taskidID&amp;nbsp;taskTitle&amp;nbsp;taskCode&amp;nbsp;taskStartDate&amp;nbsp;taskEndDate&lt;BR /&gt;AAAA708&amp;nbsp; Anderson&amp;nbsp;Ross&amp;nbsp;&amp;nbsp; 1944-04-30&amp;nbsp;1&amp;nbsp;1&amp;nbsp;&amp;nbsp;99&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;262234&amp;nbsp;&amp;nbsp;&amp;nbsp;JobSearch1&amp;nbsp;111&amp;nbsp;2019-01-28&amp;nbsp;2019-01-28&lt;BR /&gt;AAAA708&amp;nbsp; Anderson&amp;nbsp;Ross&amp;nbsp;&amp;nbsp; 1944-04-30&amp;nbsp;1&amp;nbsp;1&amp;nbsp;&amp;nbsp;99&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;262231&amp;nbsp;&amp;nbsp;JobSearch1&amp;nbsp;111&amp;nbsp;2019-01-31&amp;nbsp;2019-01-31&lt;BR /&gt;BBBB708&amp;nbsp; Moulton&amp;nbsp;Ronda&amp;nbsp;&amp;nbsp; 1947-03-04&amp;nbsp;2&amp;nbsp;1&amp;nbsp;&amp;nbsp;99&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;249335&amp;nbsp;&amp;nbsp;JobSearch2&amp;nbsp;102&amp;nbsp;2018-08-02&amp;nbsp;2018-08-31&lt;BR /&gt;BBBB708&amp;nbsp; Moulton&amp;nbsp;Ronda&amp;nbsp;&amp;nbsp; 1947-03-04&amp;nbsp;2&amp;nbsp;1&amp;nbsp;&amp;nbsp;99&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;249241&amp;nbsp;&amp;nbsp;JobSearch2&amp;nbsp;102&amp;nbsp;2018-09-02&amp;nbsp;2018-09-22&lt;BR /&gt;BBBB708&amp;nbsp; Moulton&amp;nbsp;Ronda&amp;nbsp;&amp;nbsp; 1947-03-04&amp;nbsp;2&amp;nbsp;1&amp;nbsp;&amp;nbsp;99&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;249395&amp;nbsp;&amp;nbsp;JobSearch3&amp;nbsp;135&amp;nbsp;2018-08-02&amp;nbsp;2018-08-31&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2019 15:28:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/553311#M9352</guid>
      <dc:creator>SAS_usercanada</dc:creator>
      <dc:date>2019-04-23T15:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a hierarchy file into a flat file in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/553315#M9353</link>
      <description>&lt;P&gt;The source file is XML. When I open it in Excel, the data format is &amp;nbsp;not easy to read.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IDNumber&amp;nbsp;lastName&amp;nbsp;firstName&amp;nbsp;dateOfBirth&amp;nbsp;gender&amp;nbsp;maritalStatus&amp;nbsp;numberOfDependantChildren&amp;nbsp;taskidID&amp;nbsp;taskTitle&amp;nbsp;taskCode&amp;nbsp;taskStartDate&amp;nbsp;taskEndDate&lt;BR /&gt;AAAA708&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;Anderson&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Ross&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;1944-04-30&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;99&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;262234&amp;nbsp;JobSearch1&amp;nbsp;111&amp;nbsp;2019-01-28&amp;nbsp;2019-01-28&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;262231&amp;nbsp;JobSearch1&amp;nbsp;111&amp;nbsp;2019-01-31&amp;nbsp;2019-01-31&lt;BR /&gt;BBBB708&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;Moulton&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Ronda&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;1947-03-04&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;99&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;249335&amp;nbsp;JobSearch2&amp;nbsp;102&amp;nbsp;2018-08-02&amp;nbsp;2018-08-31&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;249241&amp;nbsp;JobSearch2&amp;nbsp;102&amp;nbsp;2018-09-02&amp;nbsp;2018-09-22&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;249395&amp;nbsp;JobSearch3&amp;nbsp;135&amp;nbsp;2018-08-02&amp;nbsp;2018-08-31&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2019 15:33:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/553315#M9353</guid>
      <dc:creator>SAS_usercanada</dc:creator>
      <dc:date>2019-04-23T15:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a hierarchy file into a flat file in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/553324#M9356</link>
      <description>Have you tried using SAS XML mapper to read the file first? Or the XML libname? It will come in separate tables and you'll need to merge them, but should be pretty straightforward.</description>
      <pubDate>Tue, 23 Apr 2019 15:58:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/553324#M9356</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-04-23T15:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a hierarchy file into a flat file in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/553331#M9359</link>
      <description>We are unable to install SAS XML mapper. So I have to use programing to change the data format.&lt;BR /&gt;</description>
      <pubDate>Tue, 23 Apr 2019 16:18:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/553331#M9359</guid>
      <dc:creator>SAS_usercanada</dc:creator>
      <dc:date>2019-04-23T16:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a hierarchy file into a flat file in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/553362#M9361</link>
      <description>Libname option is still there. What version of SAS are you using? You can find it using the following:&lt;BR /&gt;&lt;BR /&gt;proc product_status;run;&lt;BR /&gt;&lt;BR /&gt;This is a quick example of how to read that file:&lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/How-can-I-import-XML-file-into-SAS/m-p/283948/highlight/true#M57913" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/How-can-I-import-XML-file-into-SAS/m-p/283948/highlight/true#M57913&lt;/A&gt;</description>
      <pubDate>Tue, 23 Apr 2019 17:39:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/553362#M9361</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-04-23T17:39:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a hierarchy file into a flat file in SAS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/553397#M9367</link>
      <description>&lt;P&gt;Don't open the XML file in Excel. Open it in a text editor and copy some of the lines and paste them into pop-up for loading text (see the {i} icon on menu)..&lt;/P&gt;
&lt;P&gt;Or attach it hear as a text file.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2019 20:03:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-convert-a-hierarchy-file-into-a-flat-file-in-SAS/m-p/553397#M9367</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-04-23T20:03:06Z</dc:date>
    </item>
  </channel>
</rss>

