<?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: SAS Programming 1 - Essentals - Lesson 2: Activity - Accessing Data - COMPLETELY STUCK! in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/519849#M3882</link>
    <description>&lt;P&gt;HI:&lt;BR /&gt; You need the FULL path in your LIBNAME statement in order to see what is in the workbook with PROC CONTENTS. If you don't see data, it might be because you specified the path incorrectly or because you specified the LIBNAME engine incorrectly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, on my Windows machine with a local install of SAS, my FULL path to that file is &lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;'c:\sas_class\EPG194\data\np_info.xlsx'&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;but, on SAS University Edition, the FULL path is&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;'/folders/myfolders/EPG194/data/np_info.xlsx'&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and, in SAS OnDemand for Academics, the FULL path is&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;'/home/&amp;lt;myuserid&amp;gt;/EPG194/data/np_info.xlsx'&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you go back to the Activity in Lesson 2 and click "Show Answer" you'll&lt;/P&gt;
&lt;P&gt;see that you are supposed to use PROC CONTENTS on NP.PARK and review the log to find out which column names&lt;BR /&gt;have been modified to follow SAS naming conventions when you use VALIDVARNAME=V7. So, in order for PROC CONTENTS to work, you need to use the XLSX engine with the LIBNAME statement to read the NP_INFO.XLSX workbook.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I run the code on my University Edition machine, then I would submit THIS code:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;libname np xlsx "/folders/myfolders/EPG194/data/np_info.xlsx";&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;options validvarname=v7;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;proc contents data=np.parks;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;libname np clear;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;The Activity does intend for you to use the XLSX engine in order to allow SAS to read the Excel sheet and run a PROC CONTENTS.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Hope this helps,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Cynthia&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 10 Dec 2018 08:08:53 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2018-12-10T08:08:53Z</dc:date>
    <item>
      <title>SAS Programming 1 - Essentals - Lesson 2: Activity - Accessing Data - COMPLETELY STUCK!</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/519763#M3873</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've just done:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Write a LIBNAME statement to create a library named &lt;/SPAN&gt;&lt;STRONG&gt;NP&lt;/STRONG&gt;&lt;SPAN&gt; that reads &lt;/SPAN&gt;&lt;STRONG&gt;np_info.xlsx&lt;/STRONG&gt;&lt;SPAN&gt; in the course data as follows: &lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;SAS Studio: Specify the full path to your &lt;STRONG&gt;EPG194/data&lt;/STRONG&gt; folder and the complete file name.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;It says its been assigned successfully, but when I look at my NP library there are NO files showing - let alone the 3 in the answer?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Perhaps it's late and I've had a long day, or I'm completely stupid (probably the latter!)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyone else had this and if so could anyone help please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Stu44&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Dec 2018 19:16:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/519763#M3873</guid>
      <dc:creator>Stu44</dc:creator>
      <dc:date>2018-12-09T19:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 1 - Essentals - Lesson 2: Activity - Accessing Data - COMPLETELY STUCK!</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/519766#M3875</link>
      <description>&lt;P&gt;Haven't taken this course. Are there any actual SAS Data sets in the path that the library points to? A .xlsx will not show up .&lt;/P&gt;</description>
      <pubDate>Sun, 09 Dec 2018 19:35:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/519766#M3875</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2018-12-09T19:35:01Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 1 - Essentals - Lesson 2: Activity - Accessing Data - COMPLETELY STUCK!</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/519773#M3877</link>
      <description>Thanks, I've been putting in xlxs so will try using a SAS dataset and see if that does it.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;Stu&lt;BR /&gt;</description>
      <pubDate>Sun, 09 Dec 2018 20:09:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/519773#M3877</guid>
      <dc:creator>Stu44</dc:creator>
      <dc:date>2018-12-09T20:09:39Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 1 - Essentals - Lesson 2: Activity - Accessing Data - COMPLETELY STUCK!</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/519776#M3879</link>
      <description>&lt;P&gt;Can you please verify you rant he start up program correctly and ran the code to generate all the data sets needed for the course?&lt;/P&gt;
&lt;P&gt;It's part of the 'Required' section in the initial set up instructions.&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/247154"&gt;@Stu44&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've just done:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Write a LIBNAME statement to create a library named &lt;/SPAN&gt;&lt;STRONG&gt;NP&lt;/STRONG&gt;&lt;SPAN&gt; that reads &lt;/SPAN&gt;&lt;STRONG&gt;np_info.xlsx&lt;/STRONG&gt;&lt;SPAN&gt; in the course data as follows: &lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;SAS Studio: Specify the full path to your &lt;STRONG&gt;EPG194/data&lt;/STRONG&gt; folder and the complete file name.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;It says its been assigned successfully, but when I look at my NP library there are NO files showing - let alone the 3 in the answer?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Perhaps it's late and I've had a long day, or I'm completely stupid (probably the latter!)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyone else had this and if so could anyone help please?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Stu44&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Dec 2018 20:44:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/519776#M3879</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-12-09T20:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 1 - Essentals - Lesson 2: Activity - Accessing Data - COMPLETELY STUCK!</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/519849#M3882</link>
      <description>&lt;P&gt;HI:&lt;BR /&gt; You need the FULL path in your LIBNAME statement in order to see what is in the workbook with PROC CONTENTS. If you don't see data, it might be because you specified the path incorrectly or because you specified the LIBNAME engine incorrectly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, on my Windows machine with a local install of SAS, my FULL path to that file is &lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;'c:\sas_class\EPG194\data\np_info.xlsx'&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;but, on SAS University Edition, the FULL path is&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;'/folders/myfolders/EPG194/data/np_info.xlsx'&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and, in SAS OnDemand for Academics, the FULL path is&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;'/home/&amp;lt;myuserid&amp;gt;/EPG194/data/np_info.xlsx'&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you go back to the Activity in Lesson 2 and click "Show Answer" you'll&lt;/P&gt;
&lt;P&gt;see that you are supposed to use PROC CONTENTS on NP.PARK and review the log to find out which column names&lt;BR /&gt;have been modified to follow SAS naming conventions when you use VALIDVARNAME=V7. So, in order for PROC CONTENTS to work, you need to use the XLSX engine with the LIBNAME statement to read the NP_INFO.XLSX workbook.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I run the code on my University Edition machine, then I would submit THIS code:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;libname np xlsx "/folders/myfolders/EPG194/data/np_info.xlsx";&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;options validvarname=v7;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;proc contents data=np.parks;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;libname np clear;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;The Activity does intend for you to use the XLSX engine in order to allow SAS to read the Excel sheet and run a PROC CONTENTS.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Hope this helps,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Cynthia&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Dec 2018 08:08:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/519849#M3882</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-12-10T08:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 1 - Essentals - Lesson 2: Activity - Accessing Data - COMPLETELY STUCK!</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/520118#M3948</link>
      <description>&lt;P&gt;Cynthia,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You are a legend!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It worked, thank you for providing such a comprehensive answer to my question.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All the best and thanks again,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Stu&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Dec 2018 19:35:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/520118#M3948</guid>
      <dc:creator>Stu44</dc:creator>
      <dc:date>2018-12-10T19:35:29Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 1 - Essentals - Lesson 2: Activity - Accessing Data - COMPLETELY STUCK!</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/520148#M3958</link>
      <description>Hi:&lt;BR /&gt;  Initially, there are NOT any SAS datasets in the EPG194/data folder. Students have to run programs to MAKE all the SAS datasets. When they first open the folder, it just contains CSV, XLSX and other "raw" data files. AFTER they run the program, as instructed, THEN there are SAS datasets in the path. But for this activity, the goal is to use PROC CONTENTS on an XLSX file.&lt;BR /&gt;Cynthia</description>
      <pubDate>Mon, 10 Dec 2018 20:57:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/520148#M3958</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-12-10T20:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 1 - Essentals - Lesson 2: Activity - Accessing Data - COMPLETELY STUCK!</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/577003#M13133</link>
      <description>&lt;P&gt;Cynthia&lt;/P&gt;&lt;P&gt;I tried what you have listed and at first attempt I was accessing the NP in libraries and nothing was in it, such as the original post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then I tried your "university edition" option, no success. It told me that NP doesn't exist.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Laurel&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2019 17:59:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/577003#M13133</guid>
      <dc:creator>lmills3</dc:creator>
      <dc:date>2019-07-26T17:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 1 - Essentals - Lesson 2: Activity - Accessing Data - COMPLETELY STUCK!</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/577172#M13156</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; The first thing to determine is how you are using SAS:&lt;/P&gt;
&lt;P&gt;1) SAS University Edition in a Virtual Machine&lt;/P&gt;
&lt;P&gt;2) SAS OnDemand for Academics on our server&lt;/P&gt;
&lt;P&gt;3) SAS on Windows as a local install&lt;/P&gt;
&lt;P&gt;4) SAS Enterprise Guide with local SAS or server SAS&lt;/P&gt;
&lt;P&gt;5) SAS Studio with local SAS or server SAS&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Then the next thing to determine is whether you followed the instructions for how to make the data for class. We have explicit instructions for how to make the Programming 1 data files. You can see ALL the methods here: &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-access-data-for-SAS-Programming-1-course/ta-p/494585" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-access-data-for-SAS-Programming-1-course/ta-p/494585&lt;/A&gt; and the bottom line is that you cannot go forward to Lesson 2 until you are absolutely sure that you have successfully created the data following the instructions for YOUR method of using SAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Finally, you're in Lesson 2. What happened in Lesson 1? Did any of the programs or exercises in Lesson 1 work for you?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; How do you log onto SAS -- from the Start Menu? Do you Start Enterprise Guide? Do you open VMWare or Virtual Box? Do you log onto the SAS Control Center for SAS OnDemand? How you answer will determine the answer to question #1. From there, you can figure out whether you have successfully made the data and then once you have successfully made the data, we should be able to help you figure out how to get over the problem you're having.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; One recommendation is to go back to the beginning and just repeat the data creation setup steps -- all the steps for your method of using SAS. That would refresh all the data files used in the class.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jul 2019 16:05:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/577172#M13156</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-07-27T16:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 1 - Essentals - Lesson 2: Activity - Accessing Data - COMPLETELY STUCK!</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/577526#M13223</link>
      <description>&lt;P&gt;Cynthia&lt;/P&gt;&lt;P&gt;I went into my createdatapg1_oda.sas&lt;/P&gt;&lt;P&gt;and it states at the very top that this will not run on z/OS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The video you sent for the SAS Studio does not match my screen. I login to the On demand to get to the studio.&lt;/P&gt;&lt;P&gt;I am frustrated and confused as to how I went wrong.&lt;/P&gt;&lt;P&gt;I did setup the Virtual box.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My path: I login to Canvas through my university, then I click on the link to open the SAS training, then I login to the studio via the ondemand academics. I followed the path and setup as directed. I finished lesson 1 without any issues. Now I am not able to complete the activity in lesson 2: accessing data through libraries.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Laurel&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 20:35:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/577526#M13223</guid>
      <dc:creator>lmills3</dc:creator>
      <dc:date>2019-07-29T20:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 1 - Essentals - Lesson 2: Activity - Accessing Data - COMPLETELY STUCK!</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/577550#M13229</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; If you are using Virtual Box, then you are using SAS University Edition NOT SAS OnDemand for Academics. The SAS OnDemand for Academics set up program will NOT work with SAS University Edition and Virtual Box.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 21:48:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/577550#M13229</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-07-29T21:48:03Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 1 - Essentals - Lesson 2: Activity - Accessing Data - COMPLETELY STUCK!</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/611207#M18182</link>
      <description>&lt;P&gt;Amazing .. This solved my problem in .&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2019 05:03:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Programming-1-Essentals-Lesson-2-Activity-Accessing-Data/m-p/611207#M18182</guid>
      <dc:creator>harisyam1984</dc:creator>
      <dc:date>2019-12-12T05:03:58Z</dc:date>
    </item>
  </channel>
</rss>

