<?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: Problem setting up the practice data for the SAS Base Certification Prep Guide using SAS Studio in SAS Training Courses</title>
    <link>https://communities.sas.com/t5/SAS-Training-Courses/Problem-setting-up-the-practice-data-for-the-SAS-Base/m-p/663332#M63</link>
    <description>&lt;P&gt;This is the location.&amp;nbsp; I thought I had this in the screenshot above, I was trying to give as much info as possible.&amp;nbsp;&lt;/P&gt;&lt;P&gt;/home/u48504815/cert&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="folder properties.jpg" style="width: 473px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/46369iA4AD7F9978252F0B/image-dimensions/473x255?v=v2" width="473" height="255" role="button" title="folder properties.jpg" alt="folder properties.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 18 Jun 2020 21:50:35 GMT</pubDate>
    <dc:creator>jlcapozz</dc:creator>
    <dc:date>2020-06-18T21:50:35Z</dc:date>
    <item>
      <title>Problem setting up the practice data for the SAS Base Certification Prep Guide using SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Training-Courses/Problem-setting-up-the-practice-data-for-the-SAS-Base/m-p/661830#M61</link>
      <description>&lt;P&gt;Please help, I am using&amp;nbsp;SAS OnDemand for Academics with SAS Studio and trying to set up the practice data files. I have gone through the two training courses on SAS and I am trying to set up the data files the same way I did for the two courses. I have searched through this forum and haven't been able to fix my problem.&lt;/P&gt;&lt;P&gt;I saved the files to my computer, add a new Folder in SAS Studio named cert, Upload the cre8data.sas file.&amp;nbsp; My issue is changing the path in the cre8data.sas file before running it. Because I took the training courses, I remembered where to find the file path for these files, by clicking on the cert folder and selecting Properties. But I don't know why that path doesn't work this time the same way it worked for the training courses. I've included screenshots of my folder and the upload path, the code I am using for the path and also the error message that I get, that the physical file does not exist. Below is the code I'm using (I left the original macro code there for reference). Could someone tell me what I am doing wrong?&amp;nbsp; I don't know if my OneDrive has anything to do with it, I saw another post where that was an issue.&amp;nbsp; I've tried downloading the practice files to a folder in OneDrive (where the two training courses also were, and worked) and also to my C drive.&amp;nbsp; Still doesn't work. Also, this same path in OneDrive still works for the EPG2V2 second training course data files. Thank you !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;/* Make sure the path macro variable points to your certification data location */&lt;BR /&gt;/*%let path=/folders/mypath/cert;*/&lt;BR /&gt;%let path=/home/u48504815/cert;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; 85         /* Make sure the path macro variable points to your certification data location */
 86         /*%let path=/folders/mypath/cert;*/
 87         %let path=/home/u48504815/cert;
 88         
 89         /********************************************************************
 90          Do not modify the code below this line
 91         ********************************************************************/
 92         %macro setdelim;
 93            %global delim;
 94            %if %index(&amp;amp;path,%str(/)) %then %let delim=%str(/);
 95            %else %let delim=%str(\);
 96         %mend;
 97         %setdelim
 98         
 99         %macro makedata;
 100        %include "&amp;amp;path&amp;amp;delim.cre8permdata.sas";
 101        %include "&amp;amp;path&amp;amp;delim.cre8workdata.sas";
 102        %include "&amp;amp;path&amp;amp;delim.cre8flatfiles.sas";
 103        %put;
 104        %put NOTE- *******************************************************;
 105        %put NOTE- Your SAS Certification Prep Guide data files are ready.;
 106        %put NOTE- *******************************************************;
 107        %mend;
 108        %makedata;
 WARNING: Physical file does not exist, /home/u48504815/cert/cre8permdata.sas.
 ERROR: Cannot open %INCLUDE file /home/u48504815/cert/cre8permdata.sas.
 WARNING: Physical file does not exist, /home/u48504815/cert/cre8workdata.sas.
 ERROR: Cannot open %INCLUDE file /home/u48504815/cert/cre8workdata.sas.
 WARNING: Physical file does not exist, /home/u48504815/cert/cre8flatfiles.sas.
 ERROR: Cannot open %INCLUDE file /home/u48504815/cert/cre8flatfiles.sas.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="upload.jpg" style="width: 550px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/45298iC4A69D3CA8FBD117/image-dimensions/550x518?v=v2" width="550" height="518" role="button" title="upload.jpg" alt="upload.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jun 2020 16:02:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Training-Courses/Problem-setting-up-the-practice-data-for-the-SAS-Base/m-p/661830#M61</guid>
      <dc:creator>jlcapozz</dc:creator>
      <dc:date>2020-06-17T16:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem setting up the practice data for the SAS Base Certification Prep Guide using SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Training-Courses/Problem-setting-up-the-practice-data-for-the-SAS-Base/m-p/663281#M62</link>
      <description>What path do you see when you right click and select properties for the cert folder in sas studio?&lt;BR /&gt;&lt;BR /&gt;Regards, Jos</description>
      <pubDate>Thu, 18 Jun 2020 19:10:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Training-Courses/Problem-setting-up-the-practice-data-for-the-SAS-Base/m-p/663281#M62</guid>
      <dc:creator>JosvanderVelden</dc:creator>
      <dc:date>2020-06-18T19:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem setting up the practice data for the SAS Base Certification Prep Guide using SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Training-Courses/Problem-setting-up-the-practice-data-for-the-SAS-Base/m-p/663332#M63</link>
      <description>&lt;P&gt;This is the location.&amp;nbsp; I thought I had this in the screenshot above, I was trying to give as much info as possible.&amp;nbsp;&lt;/P&gt;&lt;P&gt;/home/u48504815/cert&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="folder properties.jpg" style="width: 473px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/46369iA4AD7F9978252F0B/image-dimensions/473x255?v=v2" width="473" height="255" role="button" title="folder properties.jpg" alt="folder properties.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jun 2020 21:50:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Training-Courses/Problem-setting-up-the-practice-data-for-the-SAS-Base/m-p/663332#M63</guid>
      <dc:creator>jlcapozz</dc:creator>
      <dc:date>2020-06-18T21:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: Problem setting up the practice data for the SAS Base Certification Prep Guide using SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Training-Courses/Problem-setting-up-the-practice-data-for-the-SAS-Base/m-p/663649#M64</link>
      <description>&lt;P&gt;I think my problem did end up having to do with OneDrive.&amp;nbsp; Even though I did try it a different way/different drive.&amp;nbsp; Now I have reconnected with OneDrive and I was able to get the data files to load.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jun 2020 23:30:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Training-Courses/Problem-setting-up-the-practice-data-for-the-SAS-Base/m-p/663649#M64</guid>
      <dc:creator>jlcapozz</dc:creator>
      <dc:date>2020-06-19T23:30:09Z</dc:date>
    </item>
  </channel>
</rss>

