<?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 on Demand on Mac in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642676#M21877</link>
    <description>&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;I am now attempting upload of excel file into SAS on Demand for Academics--the cloud. I have run into the following problem and suspect it is an incorrect path designation. Any suggestions? &amp;nbsp;THANK YOU!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;70&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;71 PROC IMPORT DATAFILE='home/gjefferson/Desktop/FinalVTEdata2020.xlsx' DBMS=xlsx out=work.VTE;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72 SHEET='CSV';&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;73 RANGE='CSV$A1:N109';&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74 RUN;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: Physical file does not exist, /pbr/biconfig/940/Lev1/SASApp/home/gjefferson/Desktop//FinalVTEdata2020.&lt;/DIV&gt;</description>
    <pubDate>Fri, 24 Apr 2020 16:56:56 GMT</pubDate>
    <dc:creator>gjefferson</dc:creator>
    <dc:date>2020-04-24T16:56:56Z</dc:date>
    <item>
      <title>SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/629566#M20757</link>
      <description>&lt;P&gt;&lt;FONT color="#333399"&gt;Hello I am trying to use the files for the SAS certification preparation on a Mac, via SAS on Demand but it does not work. I stored the file here: /Users/noudjoumhibbert/SAS/base-guide-practice-data&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333399"&gt;I am running this program :&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%let path=/myfolders/mypath/cert;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;*%let path = ‎⁨Macintosh HD⁩.⁨Users.⁨noudjoumhibbert⁩.⁨SAS⁩.⁨base-guide-practice-data⁩/cert;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;/********************************************************************&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;Do not modify the code below this line &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;********************************************************************/&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%macro setdelim;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%global delim;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%if %index(&amp;amp;path,%str(/)) %then %let delim=%str(/);&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%else %let delim=%str(\);&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%mend;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%setdelim&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%macro makedata;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%include "&amp;amp;path&amp;amp;delim.cre8permdata.sas";&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%include "&amp;amp;path&amp;amp;delim.cre8workdata.sas";&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%include "&amp;amp;path&amp;amp;delim.cre8flatfiles.sas";&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%put;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%put NOTE- *******************************************************;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%put NOTE- Your SAS Certification Prep Guide data files are ready.;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%put NOTE- *******************************************************;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%mend;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%makedata;&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333399"&gt;and I am having this erros : &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT color="#339966"&gt;WARNING: Physical file does not exist, /myfolders/mypath/cert/cre8permdata.sas.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: Cannot open %INCLUDE file /myfolders/mypath/cert/cre8permdata.sas.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#339966"&gt;WARNING: Physical file does not exist, /myfolders/mypath/cert/cre8workdata.sas.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: Cannot open %INCLUDE file /myfolders/mypath/cert/cre8workdata.sas.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#339966"&gt;WARNING: Physical file does not exist, /myfolders/mypath/cert/cre8flatfiles.sas.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: Cannot open %INCLUDE file /myfolders/mypath/cert/cre8flatfiles.sas.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333399"&gt;thanks a lot for your help.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 19:22:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/629566#M20757</guid>
      <dc:creator>Noudjoum</dc:creator>
      <dc:date>2020-03-04T19:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/629571#M20760</link>
      <description>&lt;P&gt;Path should be the path to your practice files, so try using the path you indicated:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let path = /Users/noudjoumhibbert/SAS/base-guide-practice-data;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Make sure you have only one path.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I was fairly certain the On Demand paths started with home, not users.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would suggest navigating to the folder (assuming it's on the server) right click, select properties and get the path from there.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that On Demand runs in the cloud. &lt;STRONG&gt;It cannot see or access anything on your computer unless you upload it or copy it over,&lt;/STRONG&gt; it's running on a server somewhere else.&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/305005"&gt;@Noudjoum&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;FONT color="#333399"&gt;Hello I am trying to use the files for the SAS certification preparation on a Mac, via SAS on Demand but it does not work. I stored the file here: /Users/noudjoumhibbert/SAS/base-guide-practice-data&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333399"&gt;I am running this program :&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%let path=/myfolders/mypath/cert;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;*%let path = ‎⁨Macintosh HD⁩.⁨Users.⁨noudjoumhibbert⁩.⁨SAS⁩.⁨base-guide-practice-data⁩/cert;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;/********************************************************************&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;Do not modify the code below this line &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;********************************************************************/&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%macro setdelim;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%global delim;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%if %index(&amp;amp;path,%str(/)) %then %let delim=%str(/);&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%else %let delim=%str(\);&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%mend;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%setdelim&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%macro makedata;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%include "&amp;amp;path&amp;amp;delim.cre8permdata.sas";&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%include "&amp;amp;path&amp;amp;delim.cre8workdata.sas";&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%include "&amp;amp;path&amp;amp;delim.cre8flatfiles.sas";&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%put;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%put NOTE- *******************************************************;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%put NOTE- Your SAS Certification Prep Guide data files are ready.;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%put NOTE- *******************************************************;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%mend;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;%makedata;&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#333399"&gt;and I am having this erros : &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;FONT color="#339966"&gt;WARNING: Physical file does not exist, /myfolders/mypath/cert/cre8permdata.sas.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: Cannot open %INCLUDE file /myfolders/mypath/cert/cre8permdata.sas.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#339966"&gt;WARNING: Physical file does not exist, /myfolders/mypath/cert/cre8workdata.sas.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: Cannot open %INCLUDE file /myfolders/mypath/cert/cre8workdata.sas.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#339966"&gt;WARNING: Physical file does not exist, /myfolders/mypath/cert/cre8flatfiles.sas.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: Cannot open %INCLUDE file /myfolders/mypath/cert/cre8flatfiles.sas.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#333399"&gt;thanks a lot for your help.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 19:33:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/629571#M20760</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-03-04T19:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/629606#M20764</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Please be very clear about how you are using SAS. Are you using SAS OnDemand for Academics or SAS University Edition in a Virtual Machine?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; SAS OnDemand for Academics is a cloud server account which you access from a web browser. There are NOT any files stored on your personal machine with SAS OnDemand -- whether you are using a Mac or a Windows machine -- you always log onto the SAS Control Center and start SAS Studio from the Control Center Dashboard. Your SAS OnDemand for Academics file locations would NEVER start with &lt;STRONG&gt;/user&lt;/STRONG&gt;. For SAS OnDemand for Academics, an account is allocated 5 GB of storage space on the server and your default "root" location is ALWAYS: &lt;STRONG&gt;/home/userID&lt;/STRONG&gt; -- ALWAYS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; SAS University Edition in a Virtual Machine needs Virtual Machine hosting software like VirtualBox or VMWare Player. In this type of usage, on a Windows machine or on a Mac, you ALWAYS start your host software first and THEN start SAS Studio by entering a URL in your browser. The URL for VMWare is typically, 192.168.?.? and the URL for Virtual Box is always localhost:10080. In this case, your files go into your SASUniversityEdition/myfolders location on YOUR machine (doesn't matter if Windows or Mac). Your default "root" location for SAS University Edition is ALWAYS: &lt;STRONG&gt;/folders/myfolders&lt;/STRONG&gt; -- ALWAYS, assuming you set up the shared folder definition correctly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; If you took the free Programming 1 class, we had instructions for how to make the class data for each of the above methods. So if you were successful setting up the data for Programming 1, then you will only need to make a cert folder for the practice data instead of an EPG194 folder like you did for class.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Hope this helps.&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 21:05:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/629606#M20764</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2020-03-04T21:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/629666#M20766</link>
      <description>&lt;P&gt;Hi Reeza,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot for your answer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the path that you see in comment is the path that I copied from the get info menue on the right click +control+fn.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried both paths and none of them works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using the online SAS on demand, because the virtual machine does not work on my Mac.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So how can I upload my files to the cloud?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks a lot!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2020 00:33:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/629666#M20766</guid>
      <dc:creator>Noudjoum</dc:creator>
      <dc:date>2020-03-05T00:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/629672#M20767</link>
      <description>The virtual machine works fine on a Mac, I'm literally using it right now. If you need help with the setup, contact tech support. &lt;BR /&gt;&lt;BR /&gt;Are you using AWS by chance? As Cynthia has shown, and she works for SAS, the path shouldn't be home/ so that means something else is going on here. Or are you using your own installation? &lt;BR /&gt;If you still think you're using Academics on Demand can you please show us some screenshots of the following:&lt;BR /&gt;&lt;BR /&gt;1. Folder on the server &lt;BR /&gt;2. Properties on the folder showing the path&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Mar 2020 02:03:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/629672#M20767</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-03-05T02:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/629676#M20768</link>
      <description>To upload files to the cloud, go the Server Files and Folders pane, find the folder you want to upload into, click the icon that looks like an up arrow and upload the files.</description>
      <pubDate>Thu, 05 Mar 2020 02:16:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/629676#M20768</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-03-05T02:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/630249#M20799</link>
      <description>&lt;P&gt;Hi Cynthia,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your answer. I did not take the Programming 1 class because I work with SAS since 2009, with some interruptions du to maternity leave and then move to the US.&lt;/P&gt;&lt;P&gt;I never needed the certification until some people who were not able to assess my skills, decided that I needed to be certified. So this is why I needed the SAS University Edition or SAS on Demand, just to go through the cases of the prep book at home and not during my work hours.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I went again through the installation ( some poeple on the web said they struggled for a month with it) , and I was surprised to see that I was at the end installing SAS Studio lol Now&amp;nbsp;I am trying to figure out how to get the training package to generate the datasets. I might have to generate them manually but I have the funny feeling that there are some imports out there. To be honest I did not open all the programs.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But thanks for your help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Mar 2020 21:34:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/630249#M20799</guid>
      <dc:creator>Noudjoum</dc:creator>
      <dc:date>2020-03-06T21:34:40Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/630250#M20800</link>
      <description>&lt;P&gt;And I just did it, I just needed to replace the pathway of these programs! I am soo happy.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help everyone!!!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Mar 2020 21:41:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/630250#M20800</guid>
      <dc:creator>Noudjoum</dc:creator>
      <dc:date>2020-03-06T21:41:37Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642676#M21877</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;I am now attempting upload of excel file into SAS on Demand for Academics--the cloud. I have run into the following problem and suspect it is an incorrect path designation. Any suggestions? &amp;nbsp;THANK YOU!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;70&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;71 PROC IMPORT DATAFILE='home/gjefferson/Desktop/FinalVTEdata2020.xlsx' DBMS=xlsx out=work.VTE;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72 SHEET='CSV';&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;73 RANGE='CSV$A1:N109';&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74 RUN;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: Physical file does not exist, /pbr/biconfig/940/Lev1/SASApp/home/gjefferson/Desktop//FinalVTEdata2020.&lt;/DIV&gt;</description>
      <pubDate>Fri, 24 Apr 2020 16:56:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642676#M21877</guid>
      <dc:creator>gjefferson</dc:creator>
      <dc:date>2020-04-24T16:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642692#M21878</link>
      <description>&lt;P&gt;You need a slash in front of the home.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you find the file in Servers Files and Folders pane, right click it and select properties. The correct path will be in the properties section.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 17:05:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642692#M21878</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-04-24T17:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642702#M21879</link>
      <description>Thank your quick reply!&lt;BR /&gt;For properties my file is listed as Macintosh HD&amp;gt;Users&amp;gt;gjefferson&amp;gt;Desktop&amp;gt;FinalVTEdata2020.xlsx&lt;BR /&gt;&lt;BR /&gt;I have tried /home…, /MacintoshHD…, with and without Users.&lt;BR /&gt;&lt;BR /&gt;I am trulyl stumped.&lt;BR /&gt;</description>
      <pubDate>Fri, 24 Apr 2020 17:17:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642702#M21879</guid>
      <dc:creator>gjefferson</dc:creator>
      <dc:date>2020-04-24T17:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642707#M21880</link>
      <description>&lt;P&gt;thank you for your quick reply!&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="Screen Shot 2020-04-24 at 12.17.59 PM.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/38667i5F75EE2AA1158478/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2020-04-24 at 12.17.59 PM.png" alt="Screen Shot 2020-04-24 at 12.17.59 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; this is my properties pane.&lt;/P&gt;&lt;P&gt;I have tried /home/gjefferson/Desktop/FinalVTE...&lt;/P&gt;&lt;P&gt;I have tried/MacintoshHD/gjefferson/Desktop/FinalVTE...&lt;/P&gt;&lt;P&gt;I have tried the path inclusive of Users as well&lt;/P&gt;&lt;P&gt;I have tried the path with space between Macintosh HD as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am stumped. Any other suggestions? Thank you in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 17:22:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642707#M21880</guid>
      <dc:creator>gjefferson</dc:creator>
      <dc:date>2020-04-24T17:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642711#M21881</link>
      <description>&lt;P&gt;Ok, if you're using On Demand that's in the cloud. You cannot use a file on your local computer, the server in the cloud cannot see your computer files for good reason.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In SAS Studio, find the Servers Folders and Files pane. Look at the icons in that pane. There's one with an up arrow. Click that to upload your file to the cloud to be used.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you're using SAS UE instead, you should have created a myfolders as part of the installation. If that's the case, move the file to that folder and then use the path as:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/folders/myfolders/fileName&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or you can follow a similar procedure to upload the file. Note that there is a limit to the file size that can be uploaded and it's low. 10 or 50MB I believe.&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/319043"&gt;@gjefferson&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;thank you for your quick reply!&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="Screen Shot 2020-04-24 at 12.17.59 PM.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/38667i5F75EE2AA1158478/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2020-04-24 at 12.17.59 PM.png" alt="Screen Shot 2020-04-24 at 12.17.59 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt; this is my properties pane.&lt;/P&gt;
&lt;P&gt;I have tried /home/gjefferson/Desktop/FinalVTE...&lt;/P&gt;
&lt;P&gt;I have tried/MacintoshHD/gjefferson/Desktop/FinalVTE...&lt;/P&gt;
&lt;P&gt;I have tried the path inclusive of Users as well&lt;/P&gt;
&lt;P&gt;I have tried the path with space between Macintosh HD as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am stumped. Any other suggestions? Thank you in advance!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 17:26:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642711#M21881</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-04-24T17:26:44Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642716#M21882</link>
      <description>&lt;P&gt;Great point re: the cloud!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So that was the easiest method I had presumed, however, when I try to drag the file for uploading I receive a message that only sas files are uploaded in this manner.&lt;/P&gt;&lt;P&gt;Do you know how to save my excel file as a sas file?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 17:31:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642716#M21882</guid>
      <dc:creator>gjefferson</dc:creator>
      <dc:date>2020-04-24T17:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642717#M21883</link>
      <description>&lt;P&gt;That's not correct so either you did something wrong or the system is wrong somehow. Please show some screenshots of what you're doing.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should just be clicking upload, and then selecting the file. Once the file has been uploaded, you'll then have to&amp;nbsp; 'import' the data using a task or code to create a SAS data set.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you following one of the online courses? They have their own set up instructions as well.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 17:33:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642717#M21883</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-04-24T17:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642723#M21884</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2020-04-24 at 12.38.43 PM.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/38670i54E6DC587DC709C5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2020-04-24 at 12.38.43 PM.png" alt="Screen Shot 2020-04-24 at 12.38.43 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; I appreciate your time and will find a course.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 17:41:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642723#M21884</guid>
      <dc:creator>gjefferson</dc:creator>
      <dc:date>2020-04-24T17:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642725#M21885</link>
      <description>&lt;P&gt;Yeah, you're trying to UPLOAD not IMPORT the data - two different definitions here.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look at the image you posted and the top right hand corner. See the up/down arrows there? Use that to upload your files, then apply the import task to the file you upload.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 17:42:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642725#M21885</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-04-24T17:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642726#M21886</link>
      <description>You may want to click or expand your VTEproject folder and then click the up arrow to upload the file to the folder.</description>
      <pubDate>Fri, 24 Apr 2020 17:43:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642726#M21886</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-04-24T17:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642733#M21887</link>
      <description>&lt;P&gt;I have made progress. I can click on the "choose file" to upload, I can click the file from my Desktop list (not captured) and then SAS tells me in a pop up "no file selected" when I click "upload" in the pic.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2020-04-24 at 1.01.14 PM.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/38671i7C96F8D6E7A4AA5F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2020-04-24 at 1.01.14 PM.png" alt="Screen Shot 2020-04-24 at 1.01.14 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 18:06:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642733#M21887</guid>
      <dc:creator>gjefferson</dc:creator>
      <dc:date>2020-04-24T18:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on Demand on Mac</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642765#M21889</link>
      <description>&lt;P&gt;Show those screenshots. It works for me in SAS On Demand, if you continue to have issues beyond this you may want to contact SAS tech support or follow one of the FREE courses video instructions.&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="delete_sas.png" style="width: 721px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/38686i5151C638AB899A86/image-size/large?v=v2&amp;amp;px=999" role="button" title="delete_sas.png" alt="delete_sas.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 19:35:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-on-Demand-on-Mac/m-p/642765#M21889</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-04-24T19:35:26Z</dc:date>
    </item>
  </channel>
</rss>

