<?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: Exporting data from SAS to Excel using tutorial with SAS Studio from OnDemand for Academics in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Exporting-data-from-SAS-to-Excel-using-tutorial-with-SAS-Studio/m-p/723605#M27982</link>
    <description>&lt;P&gt;This statement has several errors:&lt;/P&gt;
&lt;PRE&gt;libname Projects "/home/u43393119/Projects" xlsx
'C:\Users\user\Documents\MDM\Health outcomes formulas manuscripts\CVD Statistical tables and SAS codes\CVD output.xlsx';&lt;/PRE&gt;
&lt;P&gt;First is when the engine is used for a libname it comes after the name of the library. So&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;libname projects xlsx&lt;/P&gt;
&lt;P&gt;is how this should start.&lt;/P&gt;
&lt;P&gt;Next you have two locations listed, "/home/u43393119/Projects" would not be valid as an xlsx as it is not an XLSX file. So the full libname would look like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;libname projects xlsx 'C:\Users\user\Documents\MDM\Health outcomes formulas manuscripts\CVD Statistical tables and SAS codes\CVD output.xlsx' ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;RUN; is not used with Libname statements. You would use Run to end a data step or most procedures.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BTW if you attempt to change the definition of a libname while one of it's data sets is open you may have issues. It is a good idea to use:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;libname projects clear;&lt;/P&gt;
&lt;P&gt;or what ever the name is when you are done with the library or want to change the definition.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 04 Mar 2021 20:10:03 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2021-03-04T20:10:03Z</dc:date>
    <item>
      <title>Exporting data from SAS to Excel using tutorial with SAS Studio from OnDemand for Academics</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Exporting-data-from-SAS-to-Excel-using-tutorial-with-SAS-Studio/m-p/723581#M27978</link>
      <description>&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;I am using a SAS tutorial (&lt;A href="https://www.youtube.com/watch?v=6fZ9a_3YPNU" target="_blank"&gt;https://www.youtube.com/watch?v=6fZ9a_3YPNU&lt;/A&gt;) to learn to export data to Excel.&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;My code:&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;
&lt;P&gt;libname Projects "/home/u43393119/Projects"; run; * a test;&lt;/P&gt;
&lt;P&gt;libname Projects "/home/u43393119/Projects" xlsx &lt;BR /&gt;'C:\Users\user\Documents\MDM\Health outcomes formulas manuscripts\CVD Statistical tables and SAS codes\CVD output.xlsx';&lt;BR /&gt;%put My version of SAS is &amp;amp;sysvlong;&lt;BR /&gt;run;&lt;/P&gt;
&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;My result is the following:&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;73 libname Projects "/home/u43393119/Projects";&lt;/DIV&gt;
&lt;DIV id="sasLogNote1_1614885313065" class="sasNote"&gt;NOTE: Libref PROJECTS was successfully assigned as follows:&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Engine: V9&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Physical Name: /home/u43393119/Projects&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;73 ! run;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;74&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;75 libname Projects "/home/u43393119/Projects" xlsx&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;____&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;22&lt;/DIV&gt;
&lt;DIV id="sasLogError1_1614885313065" class="sasError"&gt;ERROR 22-7: Invalid option name XLSX.&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;76 'C:\Users\user\Documents\MDM\Health outcomes formulas manuscripts\CVD Statistical tables and SAS codes\CVD output.xlsx';&lt;/DIV&gt;
&lt;DIV id="sasLogError2_1614885313065" class="sasError"&gt;ERROR: Libref PROJECTS is not assigned.&lt;/DIV&gt;
&lt;DIV id="sasLogError3_1614885313065" class="sasError"&gt;ERROR: Error in the LIBNAME statement.&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;77 %put My version of SAS is &amp;amp;sysvlong;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;My version of SAS is 9.04.01M6P110718&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;78 run;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;What did I do wrong?&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;Thanks.&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;David Cundiff&lt;/DIV&gt;</description>
      <pubDate>Thu, 04 Mar 2021 19:25:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Exporting-data-from-SAS-to-Excel-using-tutorial-with-SAS-Studio/m-p/723581#M27978</guid>
      <dc:creator>dkcundiffMD</dc:creator>
      <dc:date>2021-03-04T19:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting data from SAS to Excel using tutorial with SAS Studio from OnDemand for Academics</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Exporting-data-from-SAS-to-Excel-using-tutorial-with-SAS-Studio/m-p/723595#M27979</link>
      <description>&lt;P&gt;Your code should be&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname Projects xlsx 'C:\Users\user\Documents\MDM\Health outcomes formulas manuscripts\CVD Statistical tables and SAS codes\CVD output.xlsx';&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 Mar 2021 20:00:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Exporting-data-from-SAS-to-Excel-using-tutorial-with-SAS-Studio/m-p/723595#M27979</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-03-04T20:00:24Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting data from SAS to Excel using tutorial with SAS Studio from OnDemand for Academics</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Exporting-data-from-SAS-to-Excel-using-tutorial-with-SAS-Studio/m-p/723601#M27981</link>
      <description>&lt;P&gt;Are you sure your computer has access to your C drive like that? I suspect not for some reason. &lt;BR /&gt;&lt;BR /&gt;To export an Excel file using libnames it would be the following:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname myExp XLSX "/home/u43393119/Projects/sashelp_class.xlsx";

data myExp.class;
set sashelp.class;
run;

libname myExp;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Check if that works first. If it does then start playing around with different locations and data sets until you get what you want. This should work as is.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Mar 2021 20:16:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Exporting-data-from-SAS-to-Excel-using-tutorial-with-SAS-Studio/m-p/723601#M27981</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-03-04T20:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting data from SAS to Excel using tutorial with SAS Studio from OnDemand for Academics</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Exporting-data-from-SAS-to-Excel-using-tutorial-with-SAS-Studio/m-p/723605#M27982</link>
      <description>&lt;P&gt;This statement has several errors:&lt;/P&gt;
&lt;PRE&gt;libname Projects "/home/u43393119/Projects" xlsx
'C:\Users\user\Documents\MDM\Health outcomes formulas manuscripts\CVD Statistical tables and SAS codes\CVD output.xlsx';&lt;/PRE&gt;
&lt;P&gt;First is when the engine is used for a libname it comes after the name of the library. So&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;libname projects xlsx&lt;/P&gt;
&lt;P&gt;is how this should start.&lt;/P&gt;
&lt;P&gt;Next you have two locations listed, "/home/u43393119/Projects" would not be valid as an xlsx as it is not an XLSX file. So the full libname would look like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;libname projects xlsx 'C:\Users\user\Documents\MDM\Health outcomes formulas manuscripts\CVD Statistical tables and SAS codes\CVD output.xlsx' ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;RUN; is not used with Libname statements. You would use Run to end a data step or most procedures.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BTW if you attempt to change the definition of a libname while one of it's data sets is open you may have issues. It is a good idea to use:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;libname projects clear;&lt;/P&gt;
&lt;P&gt;or what ever the name is when you are done with the library or want to change the definition.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Mar 2021 20:10:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Exporting-data-from-SAS-to-Excel-using-tutorial-with-SAS-Studio/m-p/723605#M27982</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-03-04T20:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting data from SAS to Excel using tutorial with SAS Studio from OnDemand for Academics</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Exporting-data-from-SAS-to-Excel-using-tutorial-with-SAS-Studio/m-p/723733#M27984</link>
      <description>&lt;P&gt;That worked! Thanks.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now the next part is also a problem. I want to export data that I create in libname Projects, specifically a file called Projects.source. I get error messages:&lt;/P&gt;
&lt;P&gt;Code:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;libname Projects "/home/u43393119/Projects";&lt;/P&gt;
&lt;P&gt;proc sort data=Projects.source;&lt;BR /&gt;by weighted_no;&lt;BR /&gt;run; quit;&lt;/P&gt;
&lt;P&gt;libname Projects xlsx &lt;BR /&gt;'C:\Users\user\Documents\MDM\Health outcomes formulas manuscripts&lt;BR /&gt;\CVD Statistical tables and SAS codes\CVD output.xlsx';&lt;BR /&gt;%put My version of SAS is &amp;amp;sysvlong;&lt;BR /&gt;options validvarname=v7;&lt;/P&gt;
&lt;P&gt;data Projects.source;&lt;BR /&gt;set Projects.source;&lt;BR /&gt;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Log shows errors:&amp;nbsp;&lt;/P&gt;
&lt;DIV id="dijit_layout_ContentPane_44" class="dijitContentPane dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignTop"&gt;
&lt;DIV id="dijit_Toolbar_12" class="dijit dijitToolbar logToolbar" tabindex="0" role="toolbar" data-dojo-attach-point="containerNode"&gt;&lt;SPAN class="dijit dijitReset dijitInline dijitButton"&gt;&lt;INPUT class="dijitOffScreen" tabindex="-1" role="presentation" type="button" value="" data-dojo-attach-event="onclick:_onClick" aria-hidden="true" data-dojo-attach-point="valueNode" /&gt;&lt;/SPAN&gt;&lt;SPAN class="dijit dijitReset dijitInline dijitButton"&gt;&lt;INPUT class="dijitOffScreen" tabindex="-1" role="presentation" type="button" value="" data-dojo-attach-event="onclick:_onClick" aria-hidden="true" data-dojo-attach-point="valueNode" /&gt;&lt;/SPAN&gt;
&lt;DIV id="dijit_ToolbarSeparator_71" class="dijitToolbarSeparator dijitInline" tabindex="-1" role="presentation"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;SPAN class="dijit dijitReset dijitInline dijitButton"&gt;&lt;INPUT class="dijitOffScreen" tabindex="-1" role="presentation" type="button" value="" data-dojo-attach-event="onclick:_onClick" aria-hidden="true" data-dojo-attach-point="valueNode" /&gt;&lt;/SPAN&gt;
&lt;DIV id="dijit_ToolbarSeparator_73" class="dijitToolbarSeparator dijitInline" tabindex="-1" role="presentation"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;SPAN class="dijit dijitReset dijitInline dijitButton"&gt;&lt;INPUT class="dijitOffScreen" tabindex="-1" role="presentation" type="button" value="" data-dojo-attach-event="onclick:_onClick" aria-hidden="true" data-dojo-attach-point="valueNode" /&gt;&lt;/SPAN&gt;&lt;SPAN class="dijit dijitReset dijitInline dijitButton"&gt;&lt;INPUT class="dijitOffScreen" tabindex="-1" role="presentation" type="button" value="" data-dojo-attach-event="onclick:_onClick" aria-hidden="true" data-dojo-attach-point="valueNode" /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV id="dijit_TitlePane_8" class="dijitBorderContainer-child dijitBorderContainer-dijitTitlePane dijitBorderContainerPane dijitAlignTop dijitTitlePane"&gt;
&lt;DIV id="dijit_TitlePane_8_titleBarNode" class="dijitTitlePaneTitle dijitTitlePaneTitleOpen dijitOpen" data-dojo-attach-event="ondijitclick:_onTitleClick, onkeydown:_onTitleKey" data-dojo-attach-point="titleBarNode"&gt;
&lt;DIV class="dijitTitlePaneTitleFocus" tabindex="0" role="button" data-dojo-attach-point="focusNode" aria-controls="dijit_TitlePane_8_pane" aria-pressed="true"&gt;&lt;SPAN class="dijitTitlePaneTextNode" data-dojo-attach-point="titleNode"&gt;Errors, Warnings, Notes&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="dijitTitlePaneContentOuter sasLogTOC sasTOCDropDown" role="presentation" data-dojo-attach-point="hideNode"&gt;
&lt;DIV class="dijitReset" role="presentation" data-dojo-attach-point="wipeNode"&gt;
&lt;DIV id="dijit_TitlePane_8_pane" class="dijitTitlePaneContentInner" role="region" data-dojo-attach-point="containerNode" aria-labelledby="dijit_TitlePane_8_titleBarNode" aria-hidden="false"&gt;
&lt;DIV id="perspectiveTabContainer_tabsBC_tab4logTree" class="dojoDndContainer dijitTree" tabindex="0" role="presentation"&gt;
&lt;DIV class="dijitInline dijitTreeIndent" data-dojo-attach-point="indentDetector"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="dijitTreeContainer" role="presentation" data-dojo-attach-point="containerNode"&gt;
&lt;DIV id="dijit__TreeNode_1963" class="dijitTreeIsRoot dijitTreeNode dijitTreeNodeLoaded dijitLoaded" role="presentation"&gt;
&lt;DIV class="dijitTreeNodeContainer" role="tree" data-dojo-attach-point="containerNode" aria-labelledby="dijit__TreeNode_1963_label" aria-expanded="true" aria-multiselectable="true"&gt;
&lt;DIV id="dijit__TreeNode_1964" class="dijitTreeIsRoot dijitTreeNode dijitTreeNodeNotLoaded dijitNotLoaded" role="presentation"&gt;
&lt;DIV class="dijitTreeRow" title="" role="presentation" data-dojo-attach-point="rowNode"&gt;&lt;SPAN class="dijitTreeContent" data-dojo-attach-point="contentNode"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="dijitTreeLabel" data-dojo-attach-point="labelNode,focusNode" aria-selected="false" aria-expanded="false"&gt;Errors (2)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV id="dijit__TreeNode_1965" class="dijitTreeIsRoot dijitTreeNode dijitTreeNodeNotLoaded dijitNotLoaded" role="presentation"&gt;
&lt;DIV class="dijitTreeRow" title="" role="presentation" data-dojo-attach-point="rowNode"&gt;&lt;SPAN class="dijitTreeContent" data-dojo-attach-point="contentNode"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="dijitTreeLabel" data-dojo-attach-point="labelNode,focusNode" aria-selected="false" aria-expanded="false"&gt;Warnings (1)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV id="dijit__TreeNode_1966" class="dijitTreeIsRoot dijitTreeNode dijitTreeNodeNotLoaded dijitNotLoaded" role="presentation"&gt;
&lt;DIV class="dijitTreeRow" title="" role="presentation" data-dojo-attach-point="rowNode"&gt;&lt;SPAN class="dijitTreeContent" data-dojo-attach-point="contentNode"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="dijitTreeLabel" data-dojo-attach-point="labelNode,focusNode" aria-selected="false" aria-expanded="false"&gt;Notes (6)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV id="dijit_layout_BorderContainer_22" class="dijitBorderContainer dijitContainer dijitBorderContainer-child dijitBorderContainer-dijitBorderContainer dijitBorderContainerPane dijitAlignCenter dijitLayoutContainer"&gt;
&lt;DIV id="dijit_layout_ContentPane_45" class="dijitContentPane dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignCenter" dir="ltr"&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;73&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;74 libname Projects "/home/u43393119/Projects";&lt;/DIV&gt;
&lt;DIV id="sasLogNote1_1614902312521" class="sasNote"&gt;NOTE: Libref PROJECTS was successfully assigned as follows:&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Engine: V9&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Physical Name: /home/u43393119/Projects&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;75&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;76 proc sort data=Projects.source;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;77 by weighted_no;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;78 run;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="sasLogNote2_1614902312521" class="sasNote"&gt;NOTE: Input data set is already sorted, no sorting done.&lt;/DIV&gt;
&lt;DIV id="sasLogNote3_1614902312521" class="sasNote"&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;real time 0.00 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;user cpu time 0.00 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;system cpu time 0.00 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;memory 2456.46k&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;OS Memory 42128.00k&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Timestamp 03/04/2021 11:58:32 PM&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Step Count 272 Switch Count 0&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Page Faults 0&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Page Reclaims 634&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Page Swaps 0&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Voluntary Context Switches 4&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Involuntary Context Switches 0&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Block Input Operations 0&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Block Output Operations 0&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;78 ! quit;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;80&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;81 libname Projects xlsx&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;82 'C:\Users\user\Documents\MDM\Health outcomes formulas manuscripts&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;83 \CVD Statistical tables and SAS codes\CVD output.xlsx';&lt;/DIV&gt;
&lt;DIV id="sasLogNote4_1614902312521" class="sasNote"&gt;NOTE: Libref PROJECTS was successfully assigned as follows:&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Engine: XLSX&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Physical Name: C:\Users\user\Documents\MDM\Health outcomes formulas manuscripts\CVD Statistical tables and SAS codes\CVD&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;output.xlsx&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;84 %put My version of SAS is &amp;amp;sysvlong;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;My version of SAS is 9.04.01M6P110718&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;85 options validvarname=v7;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;86&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;87 run;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;88&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;89 data Projects.source;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;90 set Projects.source;&lt;/DIV&gt;
&lt;DIV id="sasLogError1_1614902312521" class="sasError"&gt;ERROR: File PROJECTS.source.DATA does not exist.&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;91&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;92 run;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;There are no variables for the output file&lt;/DIV&gt;
&lt;DIV id="sasLogError2_1614902312521" class="sasError"&gt;ERROR: File PROJECTS.source.DATA does not exist.&lt;/DIV&gt;
&lt;DIV id="sasLogNote5_1614902312521" class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;
&lt;DIV id="sasLogWarning1_1614902312521" class="sasWarning"&gt;WARNING: The data set PROJECTS.source was only partially opened and will not be saved.&lt;/DIV&gt;
&lt;DIV id="sasLogNote6_1614902312521" class="sasNote"&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;real time 0.00 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;user cpu time 0.00 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;system cpu time 0.00 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;memory 2202.87k&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;OS Memory 42892.00k&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Timestamp 03/04/2021 11:58:32 PM&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Step Count 273 Switch Count 0&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Page Faults 0&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Page Reclaims 859&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Page Swaps 0&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Voluntary Context Switches 0&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Involuntary Context Switches 0&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Block Input Operations 0&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;Block Output Operations 0&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;93&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;94 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How do I reference my file of interest: Project.source; ?&lt;/P&gt;
&lt;P&gt;Thanks.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 00:07:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Exporting-data-from-SAS-to-Excel-using-tutorial-with-SAS-Studio/m-p/723733#M27984</guid>
      <dc:creator>dkcundiffMD</dc:creator>
      <dc:date>2021-03-05T00:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting data from SAS to Excel using tutorial with SAS Studio from OnDemand for Academics</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Exporting-data-from-SAS-to-Excel-using-tutorial-with-SAS-Studio/m-p/723762#M27988</link>
      <description>I was able to create a file to export. &lt;BR /&gt;Many thanks. &lt;BR /&gt;David Cundiff</description>
      <pubDate>Fri, 05 Mar 2021 04:41:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Exporting-data-from-SAS-to-Excel-using-tutorial-with-SAS-Studio/m-p/723762#M27988</guid>
      <dc:creator>dkcundiffMD</dc:creator>
      <dc:date>2021-03-05T04:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting data from SAS to Excel using tutorial with SAS Studio from OnDemand for Academics</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Exporting-data-from-SAS-to-Excel-using-tutorial-with-SAS-Studio/m-p/723792#M27989</link>
      <description>&lt;P&gt;You cannot have two libraries with the same name.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 07:42:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Exporting-data-from-SAS-to-Excel-using-tutorial-with-SAS-Studio/m-p/723792#M27989</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-03-05T07:42:36Z</dc:date>
    </item>
  </channel>
</rss>

