<?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 What statement in the SAS University Edition editor will read and print a sas7bdat file? in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/What-statement-in-the-SAS-University-Edition-editor-will-read/m-p/467237#M5628</link>
    <description>&lt;P&gt;&lt;FONT face="times new roman,times" size="4"&gt;&lt;STRONG&gt;Re:&amp;nbsp;What statement in the SAS University Edition editor will read and print a sas7bdat file?&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="times new roman,times" size="4"&gt;I am an entirely brand new&amp;nbsp;learner on the SAS University Edition product.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="times new roman,times" size="4"&gt;I have successfully written code in the code editor that reads and prints csv and text files (using INFILE/INPUT statements).&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="times new roman,times" size="4"&gt;However, my installation of this edition received various sas7bdat data files.&amp;nbsp;I have&amp;nbsp;a file (data.sas7bdata), which I have opened and read the data with the console's text reader. However, my code statements in the editor do not successfully read and print the data in the sas7bdata file. I did create a dataset, and the file's columns appear in the WORK library, but&amp;nbsp;I receive errors saying "invalid data" in&amp;nbsp;all my run logs, and no data is returned in the results tab. I also tried INFORMAT, but it also has not worked.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="times new roman,times" size="4"&gt;What code statements&amp;nbsp;does the SAS editor recognize to read and print an sas7bdat file?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="times new roman,times" size="4"&gt;Thank you very much in advance for your consideration.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;CODE1:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;DATA fileinput2;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;INFILE '/folders/myfolders/Module3/somedata.sas7bdat';&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;INPUT @1 ID 8.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;@2 GP $8.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;@3 AGE 8.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;@4 TIME1 8.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;@5 TIME2 8.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;@6 TIME3 8.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;@7 TIME4 8.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;@8 STATUS 8.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;@9 SEX 8.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/145066"&gt;@10&lt;/a&gt; GENDER $6.;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;RUN;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;QUIT;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;SPAN&gt;CODE2:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;DATA fileinput2;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;INFILE '/folders/myfolders/Module3/somedata.sas7bdat';&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;INPUT ID 1-8&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;GP $ 9-16&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;AGE 17-24&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;TIME1 25-32&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;TIME2 33-40&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;TIME3 41-48&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;TIME4 49-56&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;STATUS 57-64&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;SEX 65-72&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;GENDER $ 73-78;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;RUN;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;Errors:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;"NOTE: The infile '/folders/myfolders/Module3/somedata.sas7bdat' is:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Filename=/folders/myfolders/Module3/somedata.sas7bdat,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Owner Name=root,Group Name=vboxsf,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Access Permission=-rwxrwx---,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Last Modified=01Jun2018:08:13:14,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; File Size (bytes)=9216&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;NOTE: Invalid data for ID in line 1 1-87.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;NOTE: Invalid data for AGE in line 1 157-160.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;NOTE: Invalid data for TIME1 in line 1 165-201.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;NOTE: Invalid data for TIME2 in line 1 203-1048.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;NOTE: Invalid data for TIME3 in line 1 1050-1477.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;NOTE: Invalid data for TIME4 in line 1 1480-1621.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;NOTE: Invalid data for STATUS in line 1 1624-1765.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;NOTE: Invalid data for SEX in line 1 1768-1837."&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="times new roman,times" size="4"&gt;Run Log attached.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 03 Jun 2018 18:14:23 GMT</pubDate>
    <dc:creator>HigherPurp0se</dc:creator>
    <dc:date>2018-06-03T18:14:23Z</dc:date>
    <item>
      <title>What statement in the SAS University Edition editor will read and print a sas7bdat file?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/What-statement-in-the-SAS-University-Edition-editor-will-read/m-p/467237#M5628</link>
      <description>&lt;P&gt;&lt;FONT face="times new roman,times" size="4"&gt;&lt;STRONG&gt;Re:&amp;nbsp;What statement in the SAS University Edition editor will read and print a sas7bdat file?&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="times new roman,times" size="4"&gt;I am an entirely brand new&amp;nbsp;learner on the SAS University Edition product.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="times new roman,times" size="4"&gt;I have successfully written code in the code editor that reads and prints csv and text files (using INFILE/INPUT statements).&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="times new roman,times" size="4"&gt;However, my installation of this edition received various sas7bdat data files.&amp;nbsp;I have&amp;nbsp;a file (data.sas7bdata), which I have opened and read the data with the console's text reader. However, my code statements in the editor do not successfully read and print the data in the sas7bdata file. I did create a dataset, and the file's columns appear in the WORK library, but&amp;nbsp;I receive errors saying "invalid data" in&amp;nbsp;all my run logs, and no data is returned in the results tab. I also tried INFORMAT, but it also has not worked.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="times new roman,times" size="4"&gt;What code statements&amp;nbsp;does the SAS editor recognize to read and print an sas7bdat file?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="times new roman,times" size="4"&gt;Thank you very much in advance for your consideration.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;CODE1:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;DATA fileinput2;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;INFILE '/folders/myfolders/Module3/somedata.sas7bdat';&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;INPUT @1 ID 8.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;@2 GP $8.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;@3 AGE 8.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;@4 TIME1 8.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;@5 TIME2 8.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;@6 TIME3 8.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;@7 TIME4 8.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;@8 STATUS 8.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;@9 SEX 8.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/145066"&gt;@10&lt;/a&gt; GENDER $6.;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;RUN;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;QUIT;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;SPAN&gt;CODE2:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;DATA fileinput2;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;INFILE '/folders/myfolders/Module3/somedata.sas7bdat';&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;INPUT ID 1-8&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;GP $ 9-16&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;AGE 17-24&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;TIME1 25-32&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;TIME2 33-40&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;TIME3 41-48&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;TIME4 49-56&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;STATUS 57-64&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;SEX 65-72&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;GENDER $ 73-78;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;RUN;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;Errors:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;"NOTE: The infile '/folders/myfolders/Module3/somedata.sas7bdat' is:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Filename=/folders/myfolders/Module3/somedata.sas7bdat,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Owner Name=root,Group Name=vboxsf,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Access Permission=-rwxrwx---,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Last Modified=01Jun2018:08:13:14,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; File Size (bytes)=9216&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;NOTE: Invalid data for ID in line 1 1-87.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;NOTE: Invalid data for AGE in line 1 157-160.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;NOTE: Invalid data for TIME1 in line 1 165-201.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;NOTE: Invalid data for TIME2 in line 1 203-1048.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;NOTE: Invalid data for TIME3 in line 1 1050-1477.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;NOTE: Invalid data for TIME4 in line 1 1480-1621.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;NOTE: Invalid data for STATUS in line 1 1624-1765.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&amp;nbsp;NOTE: Invalid data for SEX in line 1 1768-1837."&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="times new roman,times" size="4"&gt;Run Log attached.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 03 Jun 2018 18:14:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/What-statement-in-the-SAS-University-Edition-editor-will-read/m-p/467237#M5628</guid>
      <dc:creator>HigherPurp0se</dc:creator>
      <dc:date>2018-06-03T18:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: What statement in the SAS University Edition editor will read and print a sas7bdat file?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/What-statement-in-the-SAS-University-Edition-editor-will-read/m-p/467238#M5629</link>
      <description>&lt;P&gt;You can't/don't have to input already existing sas datasets. Rather than the code you tried, just use something like:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname thedata '/folders/myfolders/Module3';
data fileinput2;
  set thedata.somedata;
run;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;or, to print that data,&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname thedata '/folders/myfolders/Module3';
proc print data=thedata.somedata;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 03 Jun 2018 18:28:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/What-statement-in-the-SAS-University-Edition-editor-will-read/m-p/467238#M5629</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2018-06-03T18:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: What statement in the SAS University Edition editor will read and print a sas7bdat file?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/What-statement-in-the-SAS-University-Edition-editor-will-read/m-p/467246#M5630</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 03 Jun 2018 19:41:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/What-statement-in-the-SAS-University-Edition-editor-will-read/m-p/467246#M5630</guid>
      <dc:creator>HigherPurp0se</dc:creator>
      <dc:date>2018-06-03T19:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: What statement in the SAS University Edition editor will read and print a sas7bdat file?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/What-statement-in-the-SAS-University-Edition-editor-will-read/m-p/467250#M5631</link>
      <description>&lt;P&gt;There are video tutorials and others available here:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://video.sas.com/detail/videos/sas-analytics-u/video/4572997794001/accessing-data-in-sas-libraries?autoStart=true&amp;amp;page=1" target="_blank"&gt;http://video.sas.com/detail/videos/sas-analytics-u/video/4572997794001/accessing-data-in-sas-libraries?autoStart=true&amp;amp;page=1&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This specific video shows how to use SAS data in libraries which is your question.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 03 Jun 2018 19:55:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/What-statement-in-the-SAS-University-Edition-editor-will-read/m-p/467250#M5631</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-06-03T19:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: What statement in the SAS University Edition editor will read and print a sas7bdat file?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/What-statement-in-the-SAS-University-Edition-editor-will-read/m-p/467278#M5632</link>
      <description>&lt;P&gt;Thank you, Reeza. I will study it. Blessings.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jun 2018 00:48:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/What-statement-in-the-SAS-University-Edition-editor-will-read/m-p/467278#M5632</guid>
      <dc:creator>HigherPurp0se</dc:creator>
      <dc:date>2018-06-04T00:48:07Z</dc:date>
    </item>
  </channel>
</rss>

