<?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: Inability to read files correctly in SAS Certification</title>
    <link>https://communities.sas.com/t5/SAS-Certification/Inability-to-read-files-correctly/m-p/653111#M900</link>
    <description>&lt;P&gt;Whao! This is so simple and works absolutely fine. Thanks a million.&lt;/P&gt;&lt;P&gt;I have had training on SAS but I had a rough ride because I am new in programming. Although SAS may be tricky, It is interesting. I will appreciate your advice on what resources I need to go through to understand the programming language.&lt;/P&gt;</description>
    <pubDate>Thu, 04 Jun 2020 08:47:37 GMT</pubDate>
    <dc:creator>Labran</dc:creator>
    <dc:date>2020-06-04T08:47:37Z</dc:date>
    <item>
      <title>Inability to read files correctly</title>
      <link>https://communities.sas.com/t5/SAS-Certification/Inability-to-read-files-correctly/m-p/653028#M896</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I am new in this community and I am a toddler in SAS.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am willing to write the SAS Base Programming Certification soon but I have challenges.&lt;/P&gt;&lt;P&gt;Currently trying to solve some SAS prep questions but I got 6 observations (all missing) with the two original variables from the SAS (input13.sas7bdat) dataset provided with the program below. Could anyone kindly help me fix the problem?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;***********************************************************************************&lt;/P&gt;&lt;P&gt;libname programs '/folders/myfolders/cert/programs';&lt;/P&gt;&lt;P&gt;data programs.output13;&lt;BR /&gt;infile '/folders/myfolders/cert/input/input13.sas7bdat';&lt;BR /&gt;input date charnum;&lt;BR /&gt;informat charnum dollar7.;&lt;BR /&gt;format date date9.;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 23:40:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/Inability-to-read-files-correctly/m-p/653028#M896</guid>
      <dc:creator>Labran</dc:creator>
      <dc:date>2020-06-03T23:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: Inability to read files correctly</title>
      <link>https://communities.sas.com/t5/SAS-Certification/Inability-to-read-files-correctly/m-p/653034#M898</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/321261"&gt;@Labran&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is fair amount wrong with the code below (you don't need infile/input to read a sas data set, only a set statement). I think certification and the practice exam should take a back burner for the moment and take some time with SAS training. I would start with the &lt;A href="https://support.sas.com/edu/schedules.html?crs=PROG1" target="_blank" rel="noopener"&gt;Programming 1&lt;/A&gt; eLearning, available for free.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2020 00:46:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/Inability-to-read-files-correctly/m-p/653034#M898</guid>
      <dc:creator>Mark2010</dc:creator>
      <dc:date>2020-06-04T00:46:57Z</dc:date>
    </item>
    <item>
      <title>Re: Inability to read files correctly</title>
      <link>https://communities.sas.com/t5/SAS-Certification/Inability-to-read-files-correctly/m-p/653041#M899</link>
      <description>&lt;P&gt;You don't use infile to read a sas data set, you use infile for text files.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname input '/folders/myfolders/cert/input';

data output13;
set input.input13;
format date date9.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not exactly sure why you'd be writing/saving SAS data sets to your programs folder either, that doesn't make a ton of sense IMO. &amp;nbsp;My suggestion would echo&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/38931"&gt;@Mark2010&lt;/a&gt;&amp;nbsp;to first take the full training courses to learn SAS effectively and then consider taking the certification exams when you're more prepared. SAS is not similar to R/Python so there may be a learning curve even if you do have prior programming experience.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2020 01:51:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/Inability-to-read-files-correctly/m-p/653041#M899</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-06-04T01:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Inability to read files correctly</title>
      <link>https://communities.sas.com/t5/SAS-Certification/Inability-to-read-files-correctly/m-p/653111#M900</link>
      <description>&lt;P&gt;Whao! This is so simple and works absolutely fine. Thanks a million.&lt;/P&gt;&lt;P&gt;I have had training on SAS but I had a rough ride because I am new in programming. Although SAS may be tricky, It is interesting. I will appreciate your advice on what resources I need to go through to understand the programming language.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2020 08:47:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/Inability-to-read-files-correctly/m-p/653111#M900</guid>
      <dc:creator>Labran</dc:creator>
      <dc:date>2020-06-04T08:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: Inability to read files correctly</title>
      <link>https://communities.sas.com/t5/SAS-Certification/Inability-to-read-files-correctly/m-p/653114#M901</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/38931"&gt;@Mark2010&lt;/a&gt;&amp;nbsp;for your contribution. I have attended training in SAS but I still mix things up. I will appreciate if you can suggest resources that would aid my understanding of the programming language. Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2020 08:51:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/Inability-to-read-files-correctly/m-p/653114#M901</guid>
      <dc:creator>Labran</dc:creator>
      <dc:date>2020-06-04T08:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: Inability to read files correctly</title>
      <link>https://communities.sas.com/t5/SAS-Certification/Inability-to-read-files-correctly/m-p/653146#M902</link>
      <description>&lt;P&gt;The suggested preparation materials are listed on the&lt;A href="https://www.sas.com/en_us/certification/credentials/foundation-tools/base-programming-specialist.html" target="_self"&gt; credential web page&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;There are a ton of tutorial videos on our &lt;A href="https://www.sas.com/en_us/training/overview.html" target="_self"&gt;training page&lt;/A&gt; and YouTube SAS Users Channel. (scroll down the training page for links).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2020 11:05:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/Inability-to-read-files-correctly/m-p/653146#M902</guid>
      <dc:creator>Mark2010</dc:creator>
      <dc:date>2020-06-04T11:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: Inability to read files correctly</title>
      <link>https://communities.sas.com/t5/SAS-Certification/Inability-to-read-files-correctly/m-p/653730#M903</link>
      <description>&lt;P&gt;The first training course covers topics such as the SAS library and how to access data sets.&lt;/P&gt;
&lt;P&gt;I would suggest re-taking it. Scroll half way down the page to the Free SAS training (not the 30 day ones)&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.sas.com/en_us/training/offers/free-training.html" target="_blank"&gt;https://www.sas.com/en_us/training/offers/free-training.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you read through this and understand it all, you'll pass the exam. Yes, it's long.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.3&amp;amp;docsetId=basess&amp;amp;docsetTarget=titlepage.htm&amp;amp;locale=en"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.3&amp;amp;docsetId=basess&amp;amp;docsetTarget=titlepage.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Little SAS Book is another really good set of exercises to practice.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.amazon.com/Little-SAS-Book-Primer-Sixth-ebook/dp/B07Z7B5PZ6/ref=rtpb_4/143-6979487-6409943?_encoding=UTF8&amp;amp;pd_rd_i=B07Z7B5PZ6&amp;amp;pd_rd_r=0e4e6990-75e9-4e64-b48a-74501756bb44&amp;amp;pd_rd_w=j5beg&amp;amp;pd_rd_wg=ASEqD&amp;amp;pf_rd_p=a136a256-ecb3-4f84-bbd0-fbb4daa17979&amp;amp;pf_rd_r=NXBCAJPAZ5GKRHJBWV90&amp;amp;psc=1&amp;amp;refRID=NXBCAJPAZ5GKRHJBWV90" target="_blank"&gt;https://www.amazon.com/Little-SAS-Book-Primer-Sixth-ebook/dp/B07Z7B5PZ6/ref=rtpb_4/143-6979487-6409943?_encoding=UTF8&amp;amp;pd_rd_i=B07Z7B5PZ6&amp;amp;pd_rd_r=0e4e6990-75e9-4e64-b48a-74501756bb44&amp;amp;pd_rd_w=j5beg&amp;amp;pd_rd_wg=ASEqD&amp;amp;pf_rd_p=a136a256-ecb3-4f84-bbd0-fbb4daa17979&amp;amp;pf_rd_r=NXBCAJPAZ5GKRHJBWV90&amp;amp;psc=1&amp;amp;refRID=NXBCAJPAZ5GKRHJBWV90&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've compiled a list of mostly free resources here for specific topics.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/statgeek/SAS-Tutorials/blob/master/Base_Certification_Resource_Guide.md" target="_blank"&gt;https://github.com/statgeek/SAS-Tutorials/blob/master/Base_Certification_Resource_Guide.md&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And you can always search lexjansen.com for papers on specific topics. I suggest looking at the guide for the certification and ensuring you understand every topic listed and if not, do a deep dive using one of the above resources.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2020 16:23:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/Inability-to-read-files-correctly/m-p/653730#M903</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-06-05T16:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: Inability to read files correctly</title>
      <link>https://communities.sas.com/t5/SAS-Certification/Inability-to-read-files-correctly/m-p/653817#M904</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/38931"&gt;@Mark2010&lt;/a&gt;&amp;nbsp;. The information you provided proved to be useful.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2020 22:52:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/Inability-to-read-files-correctly/m-p/653817#M904</guid>
      <dc:creator>Labran</dc:creator>
      <dc:date>2020-06-05T22:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: Inability to read files correctly</title>
      <link>https://communities.sas.com/t5/SAS-Certification/Inability-to-read-files-correctly/m-p/653818#M905</link>
      <description>&lt;P&gt;So much appreciation,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;. I will go through the resources. Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2020 22:53:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/Inability-to-read-files-correctly/m-p/653818#M905</guid>
      <dc:creator>Labran</dc:creator>
      <dc:date>2020-06-05T22:53:49Z</dc:date>
    </item>
  </channel>
</rss>

