<?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 Proc Content Errors in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Content-Errors/m-p/895959#M82952</link>
    <description>&lt;P&gt;&amp;nbsp;While working on a project for class, I have written the following code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;LIBNAME Check XLSX "&amp;amp;CourseRoot/CDPHE Study/Data/1_Source/Insurance.xlsx";
LIBNAME Check CLEAR;

LIBNAME	CoImpt XLSX "&amp;amp;CourseRoot/CDPHE Study/Data/1_Source/Insurance.xlsx";
PROC PRINT
		DATA = CoImpt.Insurance
		LABEL;
	RUN;
	
	PROC CONTENTS;
	RUN;&lt;/PRE&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;When I do not include the Proc Contents, it runs fine. When I include the Proc Contents, I get two error messages:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV class=""&gt;ERROR: Couldn't find range or sheet in spreadsheet&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: File COIMPT.EDUCATION.DATA does not exist.&lt;/DIV&gt;&lt;DIV class=""&gt;Below is the log for reference. Where have I gone wrong?&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;PRE&gt; 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 68         
 69         LIBNAME Check XLSX "&amp;amp;CourseRoot/CDPHE Study/Data/1_Source/Insurance.xlsx";
 NOTE: Libref CHECK was successfully assigned as follows: 
       Engine:        XLSX 
       Physical Name: /home/u63571562/BIOS6680_2023/CDPHE Study/Data/1_Source/Insurance.xlsx
 70         LIBNAME Check CLEAR;
 NOTE: Libref CHECK has been deassigned.
 71         
 72         LIBNAMECoImpt XLSX "&amp;amp;CourseRoot/CDPHE Study/Data/1_Source/Insurance.xlsx";
 NOTE: Libref COIMPT was successfully assigned as follows: 
       Engine:        XLSX 
       Physical Name: /home/u63571562/BIOS6680_2023/CDPHE Study/Data/1_Source/Insurance.xlsx
 73         PROC PRINT
 74         DATA = CoImpt.Insurance
 75         LABEL;
 76         RUN;
 
 NOTE: Access by observation number not available. Observation numbers will be counted by PROC PRINT.
 NOTE: The import data set has 1 observations and 64 variables.
 NOTE: The import data set has 1 observations and 64 variables.
 NOTE: There were 1 observations read from the data set COIMPT.Insurance.
 NOTE: PROCEDURE PRINT used (Total process time):
       real time           0.06 seconds
       user cpu time       0.05 seconds
       system cpu time     0.01 seconds
       memory              4240.71k
       OS Memory           29028.00k
       Timestamp           09/26/2023 08:29:08 PM
       Step Count                        92  Switch Count  0
       Page Faults                       0
       Page Reclaims                     886
       Page Swaps                        0
       Voluntary Context Switches        9
       Involuntary Context Switches      2
       Block Input Operations            0
       Block Output Operations           24
       
 
 77         
 78         
 78       !  PROC CONTENTS;
 ERROR: Couldn't find range or sheet in spreadsheet
 ERROR: File COIMPT.EDUCATION.DATA does not exist.
 79         RUN;
 
 NOTE: Statements not processed because of errors noted above.
 NOTE: PROCEDURE CONTENTS used (Total process time):
       real time           0.00 seconds
       user cpu time       0.00 seconds
       system cpu time     0.00 seconds
       memory              2875.00k
       OS Memory           29028.00k
       Timestamp           09/26/2023 08:29:08 PM
       Step Count                        93  Switch Count  0
       Page Faults                       0
       Page Reclaims                     662
       Page Swaps                        0
       Voluntary Context Switches        2
       Involuntary Context Switches      0
       Block Input Operations            0
       Block Output Operations           8
       
 NOTE: The SAS System stopped processing this step because of errors.
 80         
 81         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 91   &lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Tue, 26 Sep 2023 20:34:54 GMT</pubDate>
    <dc:creator>BLT2023</dc:creator>
    <dc:date>2023-09-26T20:34:54Z</dc:date>
    <item>
      <title>Proc Content Errors</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Content-Errors/m-p/895959#M82952</link>
      <description>&lt;P&gt;&amp;nbsp;While working on a project for class, I have written the following code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;LIBNAME Check XLSX "&amp;amp;CourseRoot/CDPHE Study/Data/1_Source/Insurance.xlsx";
LIBNAME Check CLEAR;

LIBNAME	CoImpt XLSX "&amp;amp;CourseRoot/CDPHE Study/Data/1_Source/Insurance.xlsx";
PROC PRINT
		DATA = CoImpt.Insurance
		LABEL;
	RUN;
	
	PROC CONTENTS;
	RUN;&lt;/PRE&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;When I do not include the Proc Contents, it runs fine. When I include the Proc Contents, I get two error messages:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV class=""&gt;ERROR: Couldn't find range or sheet in spreadsheet&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: File COIMPT.EDUCATION.DATA does not exist.&lt;/DIV&gt;&lt;DIV class=""&gt;Below is the log for reference. Where have I gone wrong?&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;PRE&gt; 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 68         
 69         LIBNAME Check XLSX "&amp;amp;CourseRoot/CDPHE Study/Data/1_Source/Insurance.xlsx";
 NOTE: Libref CHECK was successfully assigned as follows: 
       Engine:        XLSX 
       Physical Name: /home/u63571562/BIOS6680_2023/CDPHE Study/Data/1_Source/Insurance.xlsx
 70         LIBNAME Check CLEAR;
 NOTE: Libref CHECK has been deassigned.
 71         
 72         LIBNAMECoImpt XLSX "&amp;amp;CourseRoot/CDPHE Study/Data/1_Source/Insurance.xlsx";
 NOTE: Libref COIMPT was successfully assigned as follows: 
       Engine:        XLSX 
       Physical Name: /home/u63571562/BIOS6680_2023/CDPHE Study/Data/1_Source/Insurance.xlsx
 73         PROC PRINT
 74         DATA = CoImpt.Insurance
 75         LABEL;
 76         RUN;
 
 NOTE: Access by observation number not available. Observation numbers will be counted by PROC PRINT.
 NOTE: The import data set has 1 observations and 64 variables.
 NOTE: The import data set has 1 observations and 64 variables.
 NOTE: There were 1 observations read from the data set COIMPT.Insurance.
 NOTE: PROCEDURE PRINT used (Total process time):
       real time           0.06 seconds
       user cpu time       0.05 seconds
       system cpu time     0.01 seconds
       memory              4240.71k
       OS Memory           29028.00k
       Timestamp           09/26/2023 08:29:08 PM
       Step Count                        92  Switch Count  0
       Page Faults                       0
       Page Reclaims                     886
       Page Swaps                        0
       Voluntary Context Switches        9
       Involuntary Context Switches      2
       Block Input Operations            0
       Block Output Operations           24
       
 
 77         
 78         
 78       !  PROC CONTENTS;
 ERROR: Couldn't find range or sheet in spreadsheet
 ERROR: File COIMPT.EDUCATION.DATA does not exist.
 79         RUN;
 
 NOTE: Statements not processed because of errors noted above.
 NOTE: PROCEDURE CONTENTS used (Total process time):
       real time           0.00 seconds
       user cpu time       0.00 seconds
       system cpu time     0.00 seconds
       memory              2875.00k
       OS Memory           29028.00k
       Timestamp           09/26/2023 08:29:08 PM
       Step Count                        93  Switch Count  0
       Page Faults                       0
       Page Reclaims                     662
       Page Swaps                        0
       Voluntary Context Switches        2
       Involuntary Context Switches      0
       Block Input Operations            0
       Block Output Operations           8
       
 NOTE: The SAS System stopped processing this step because of errors.
 80         
 81         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 91   &lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 26 Sep 2023 20:34:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Content-Errors/m-p/895959#M82952</guid>
      <dc:creator>BLT2023</dc:creator>
      <dc:date>2023-09-26T20:34:54Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Content Errors</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Content-Errors/m-p/896046#M82953</link>
      <description>&lt;P&gt;&lt;SPAN&gt;The CONTENTS procedure shows the contents of a SAS data set. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You have an Excel sheet.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Ergo you get an error&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Sep 2023 13:46:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Content-Errors/m-p/896046#M82953</guid>
      <dc:creator>rudfaden</dc:creator>
      <dc:date>2023-09-27T13:46:20Z</dc:date>
    </item>
  </channel>
</rss>

