<?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: XPORT BRFSS data on Mac in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527503#M143820</link>
    <description>&lt;P&gt;It was built using PROC XPORT, and even comes with a prebuilt XPORT SAS file that I cannot get to work on my MAC. Again, I've done this many times and never had a problem with relative paths. I used shared drives on the appliance before with no problems.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 15 Jan 2019 20:55:00 GMT</pubDate>
    <dc:creator>abbyrjones72</dc:creator>
    <dc:date>2019-01-15T20:55:00Z</dc:date>
    <item>
      <title>XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527488#M143813</link>
      <description>&lt;P&gt;I'm having a dandy of a time recognizing a simple .XPT file from the CDC. The code I am using is this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname xptfile xport 'folders/myfolders/LLCP2014.XPT ';
libname sasfile '/folders/myfolders';&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I have the LLCP2014.XPT file in my shared folder, and have full permissions on it for use with SAS University Edition. These commands run successfully, but there is NO&amp;nbsp;&lt;SPAN&gt;.sas7bdat file ever created in any library.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I've never had this problem before, and have completed a full research study using this method. Any ideas?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This is how I am trying to access the newly created dataset, but nothing is there.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data tmpb2014;
	set xptfile.LLCP2014;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 20:34:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527488#M143813</guid>
      <dc:creator>abbyrjones72</dc:creator>
      <dc:date>2019-01-15T20:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527494#M143815</link>
      <description>&lt;P&gt;There are two issues with the code you posted.&lt;/P&gt;
&lt;P&gt;Your first LIBNAME is using a relative path instead of an absolute path.&amp;nbsp; That will not work since the default directory is NOT the root node.&lt;/P&gt;
&lt;P&gt;Your data step is create a work dataset only. So you never TRIED to write any SAS datasets back to your shared folder, which would explain why they aren't there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first is probably just a typo since you said the code ran.&lt;/P&gt;
&lt;P&gt;For the second one you just need to change your output dataset name in the DATA statement to use the libref you defined in your second LIBNAME statement.&amp;nbsp; Or add another step to save it.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data sasfile.tmpb2014;
	set xptfile.LLCP2014;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 20:45:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527494#M143815</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-01-15T20:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527498#M143817</link>
      <description>&lt;P&gt;Can you show your log?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;XPORT engine does not support some SAS 9 features such as long variable names and should show warnings if that is the issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might need to investigate Proc Cimport if the transport file was built using Proc Cport.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 20:48:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527498#M143817</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-01-15T20:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527501#M143819</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; 
 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 72         
 73         *Objective:
 74         
 75         The objective of this analysis is to investigate the association between depression
 76         
 77         (yes versus no) and general health (Excellent/Very good versus good/fair/poor)
 78         
 79         
 80         after adjusting for gender and education in 2014 BRFSS data;
 81         
 82         libname xptfile xport 'Users/abbyjones/Documents/myfolders/LLCP2014.XPT';
 NOTE: Libref XPTFILE was successfully assigned as follows: 
       Engine:        XPORT 
       Physical Name: /opt/sasinside/SASConfig/Lev1/SASApp/Users/abbyjones/Documents/myfolders/LLCP2014.XPT
 83         libname sasfile '/folders/myfolders';
 NOTE: Libref SASFILE was successfully assigned as follows: 
       Engine:        V9 
       Physical Name: /folders/myfolders
 84         
 85         data sasfile.tmpb2014;
 86         set xptfile.LLCP2014 (where=((ADDEPEV2 in (1, 2)) and (GENHLTH in (1, 2, 3, 4, 5))
 87         and (educa in (1, 2, 3, 4, 5)) ));
 ERROR: Physical file does not exist, /opt/sasinside/SASConfig/Lev1/SASApp/Users/abbyjones/Documents/myfolders/LLCP2014.XPT.
 88        
 89         
 90         if ADDEPEV2 in(1) then
 91         Depressed=1;
 92         *yes;
 93         
 94         if ADDEPEV2 in(2) then
 95         Depressed=0;
 96         *no;
 97         
 98         if GENHLTH in (1, 2) then
 99         hlthcat=1;
 100        *excellent or very good reported health;
 101        
 102        if GENHLTH in (3, 4, 5) then
 103        hlthcat=0;
 104        *good, fair, or poor reported health;
 105        
 106        if EDUCA in (1, 2) then
 107        educat=1;
 108        *'Less than 8';
 109        
 110        if EDUCA in (3, 4) then
 111        educat=2;
 112        *'9-12/GED';
 113        
 114        if EDUCA in (5, 6)then
 115        educat=3;
 116        *'College/Prof. Degree';
 117        run;
 
 NOTE: The SAS System stopped processing this step because of errors.
 WARNING: The data set SASFILE.TMPB2014 may be incomplete.  When this step was stopped there were 0 observations and 6 variables.
 WARNING: Data set SASFILE.TMPB2014 was not replaced because this step was stopped.
 NOTE: DATA statement used (Total process time):
       real time           0.01 seconds
       cpu time            0.00 seconds
       
 
 118        
 119        *table1;
 120        
 121        proc freq data=tmpb2014;
 122        tables (sex educat) *hlthcat / chisq;
 ERROR: Variable SEX not found.
 123        run;
 
 NOTE: The SAS System stopped processing this step because of errors.
 NOTE: PROCEDURE FREQ used (Total process time):
       real time           0.00 seconds
       cpu time            0.00 seconds
       
 124        
 125        *table2;
 126        
 
 
 127        proc freq data=tmpb2014;
 128        tables (hlthcat sex educat) * Depressed / chisq;
 ERROR: Variable SEX not found.
 129        run;
 
 NOTE: The SAS System stopped processing this step because of errors.
 NOTE: PROCEDURE FREQ used (Total process time):
       real time           0.00 seconds
       cpu time            0.00 seconds
       
 130        
 131        OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 143        &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 15 Jan 2019 20:52:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527501#M143819</guid>
      <dc:creator>abbyrjones72</dc:creator>
      <dc:date>2019-01-15T20:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527503#M143820</link>
      <description>&lt;P&gt;It was built using PROC XPORT, and even comes with a prebuilt XPORT SAS file that I cannot get to work on my MAC. Again, I've done this many times and never had a problem with relative paths. I used shared drives on the appliance before with no problems.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 20:55:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527503#M143820</guid>
      <dc:creator>abbyrjones72</dc:creator>
      <dc:date>2019-01-15T20:55:00Z</dc:date>
    </item>
    <item>
      <title>Re: XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527504#M143821</link>
      <description>&lt;P&gt;You need to fix the path to the export file.&lt;/P&gt;
&lt;P&gt;Read the log carefully and my previous message and you should be able to do it yourself.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 20:56:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527504#M143821</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-01-15T20:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527508#M143822</link>
      <description>&lt;P&gt;The LIBNAME statement in your first post is much closer to being right than the version in your log.&lt;/P&gt;
&lt;P&gt;There is no "User" folder on the unix virtual machine where SAS is running.&amp;nbsp; Your files are under /folders/myfolders.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Remember that if the path does not start with a slash, / , also known as the root node, then it is a relative path.&amp;nbsp; Look at how SAS interpreted the path in your SAS log.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 21:05:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527508#M143822</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-01-15T21:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527513#M143824</link>
      <description>&lt;P&gt;I already tried that without success. I think what I posted was revision two. Nothing is working. Very frustrating.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 21:11:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527513#M143824</guid>
      <dc:creator>abbyrjones72</dc:creator>
      <dc:date>2019-01-15T21:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527516#M143825</link>
      <description>Find the file in the Files and Folders tab. Open properties of the file to find the path and copy and paste it into your code.&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Jan 2019 21:17:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527516#M143825</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-01-15T21:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527517#M143826</link>
      <description>&lt;P&gt;That's what I've been doing. It doesn't work.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 21:18:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527517#M143826</guid>
      <dc:creator>abbyrjones72</dc:creator>
      <dc:date>2019-01-15T21:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527524#M143827</link>
      <description>&lt;P&gt;I even created a new share on the Virtual Machine, copied the paths from the properties,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname xptfile xport '/folders/myshortcuts/brfss/LLCP2014.XPT';
libname sasfile '/folders/myshortcuts/brfss/';&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I've done it both ways, with the trailing / on the&amp;nbsp; sasfile statement and without it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;, and this is what I have, but the dataset is empty, so at least it is creating it here.&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 2019-01-15 at 4.23.35 PM.png" style="width: 226px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26292i10237AC7AAA99014/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2019-01-15 at 4.23.35 PM.png" alt="Screen Shot 2019-01-15 at 4.23.35 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And this is how I am accessing it:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2019-01-15 at 4.24.51 PM.png" style="width: 246px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26293iBF0FE0021332512A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2019-01-15 at 4.24.51 PM.png" alt="Screen Shot 2019-01-15 at 4.24.51 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I continue to get&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ERROR: Physical file does not exist, /folders/myshortcuts/brfss/LLCP2014.XPT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 21:27:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527524#M143827</guid>
      <dc:creator>abbyrjones72</dc:creator>
      <dc:date>2019-01-15T21:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527534#M143830</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are using SAS University Edition then it is probably something like:&lt;/P&gt;
&lt;PRE&gt;/folders/myfolders/brfss/LLCP2014.XPT&lt;/PRE&gt;
&lt;P&gt;"Folder Shortcuts" is&amp;nbsp;just how the GUI shows it, so I doubt that "myshortcuts" is actually part of the path.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That screen shot is showing that you have defined brfss as a shortcut that points to an actual directory on the virtual machine. So the above example I typed might not be right.&amp;nbsp; You might has defined "brfss" as a pointer to some other path like:&amp;nbsp; /folders/myfolders/My Sub Folder/BRFSS&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But if you select that file name that represents the XPT file in that GUI interface and select properties what path does it show?&amp;nbsp; That is the path you need to use, not what is shown in that screen shot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Remember that Unix file names are case sensitive.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 22:04:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527534#M143830</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-01-15T22:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527580#M143846</link>
      <description>&lt;P&gt;Perhaps this is the reason. SAS is seeing this as a 0 byte file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I navigate to the folder and it does have the appropriate size.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2019-01-15 at 7.53.59 PM.png" style="width: 568px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26303i1C625394E590A907/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2019-01-15 at 7.53.59 PM.png" alt="Screen Shot 2019-01-15 at 7.53.59 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jan 2019 00:56:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527580#M143846</guid>
      <dc:creator>abbyrjones72</dc:creator>
      <dc:date>2019-01-16T00:56:20Z</dc:date>
    </item>
    <item>
      <title>Re: XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527581#M143847</link>
      <description>&lt;P&gt;I figured it out. The filename, when unzipped, automatically puts a space at the end of .XPT, which causes SAS to ignore it and misreport the size/format. Wow....bad job, Apple.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jan 2019 00:59:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527581#M143847</guid>
      <dc:creator>abbyrjones72</dc:creator>
      <dc:date>2019-01-16T00:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527608#M143867</link>
      <description>&lt;P&gt;That is not Apple's fault, or ZIP either, but is caused by the creator of the ZIP file adding the space to the filename.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jan 2019 02:57:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527608#M143867</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-01-16T02:57:45Z</dc:date>
    </item>
    <item>
      <title>Re: XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527736#M143941</link>
      <description>&lt;P&gt;Hi Tom,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First off, please let me thank you and BallardW and everyone else for all of the assistance you offered yesterday. While it was a flukey thing that ended up being the culprit, I appreciate your valuable time.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;On a side note, if these are the same data I used a year ago, and the files haven't been changed, it would appear that unzipping in Windows might be more effective at truncating that space. I cannot verify this as I do not have a Windows machine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank all of you very much for your time and patience. I look forward to learning from you all.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jan 2019 15:21:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/527736#M143941</guid>
      <dc:creator>abbyrjones72</dc:creator>
      <dc:date>2019-01-16T15:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/528388#M144213</link>
      <description>&lt;P&gt;I don't know if it makes you feel any better but I had to diagnose a similar issue when our IT department policies moved all of our work OneDrive.&lt;/P&gt;
&lt;P&gt;I frequently use a macro variable to hold the path so I can have common use for multiple ODS documents without having to retype 100+ character strings, which got longer when the OneDrive required replacing C:\ with C:\Users\xxxxxxx\OneDrive - xxxx .&lt;/P&gt;
&lt;P&gt;Previously a macro variable such as&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;%let path= c:\folder\otherfolder\;&lt;BR /&gt;ods rtf file="&amp;amp;path.filename.rtf";&lt;/PRE&gt;
&lt;P&gt;worked just fine. When writing to OneDrive locations however, it was actually attempting to use the leading space before the drive letter and all of the code had to remove the space in the macro variable definitions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And the error messages that SAS received from OneDrive were not obvious that a space was causing a problem.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jan 2019 17:32:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/528388#M144213</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-01-18T17:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/528400#M144220</link>
      <description>&lt;P&gt;Well I am glad I wasn't the only one who noticed this. Glad we both fixed it.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jan 2019 17:45:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/528400#M144220</guid>
      <dc:creator>abbyrjones72</dc:creator>
      <dc:date>2019-01-18T17:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/679640#M205240</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I was wondering what study you did after xporting the LLCP2014 data set. May I know what variable you chose as an outcome variable and exposure variable, and what was the analysis about?&lt;/P&gt;</description>
      <pubDate>Thu, 27 Aug 2020 03:38:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/679640#M205240</guid>
      <dc:creator>zahidhasandipu</dc:creator>
      <dc:date>2020-08-27T03:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: XPORT BRFSS data on Mac</title>
      <link>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/679799#M205313</link>
      <description>I can post the study when I get off work.&lt;BR /&gt;</description>
      <pubDate>Thu, 27 Aug 2020 16:43:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/XPORT-BRFSS-data-on-Mac/m-p/679799#M205313</guid>
      <dc:creator>abbyrjones72</dc:creator>
      <dc:date>2020-08-27T16:43:21Z</dc:date>
    </item>
  </channel>
</rss>

