<?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 Studio doesn't run code in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-doesn-t-run-code/m-p/410260#M3849</link>
    <description>&lt;P&gt;As per&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;, post the log.&amp;nbsp; Check where the code is coming from.&amp;nbsp; Something is amis there as your code seems fine, but we cannot debug without some info.&lt;/P&gt;</description>
    <pubDate>Fri, 03 Nov 2017 14:48:03 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2017-11-03T14:48:03Z</dc:date>
    <item>
      <title>SAS Studio doesn't run code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-doesn-t-run-code/m-p/410117#M3836</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to write a data set with 2 variables and each variable has 30 observations, but the SAS code won't run. Here is a snip of what I am doing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data Payroll;&lt;BR /&gt;Input Payroll Win;&lt;BR /&gt;datalines;&lt;BR /&gt;206 95&lt;BR /&gt;162 89&lt;BR /&gt;146 75&lt;BR /&gt;142 97&lt;BR /&gt;134 79&lt;BR /&gt;123 81&lt;BR /&gt;106 88&lt;BR /&gt;105 80&lt;BR /&gt;99 92&lt;BR /&gt;98 94&lt;BR /&gt;95 80&lt;BR /&gt;92 76&lt;BR /&gt;86 61&lt;BR /&gt;86 86&lt;BR /&gt;84 91&lt;BR /&gt;84 83&lt;BR /&gt;82 66&lt;BR /&gt;81 77&lt;BR /&gt;72 96&lt;BR /&gt;71 91&lt;BR /&gt;71 67&lt;BR /&gt;62 85&lt;BR /&gt;61 65&lt;BR /&gt;61 69&lt;BR /&gt;61 69&lt;BR /&gt;57 80&lt;BR /&gt;55 90&lt;BR /&gt;52 81&lt;BR /&gt;38 90&lt;BR /&gt;35 57&lt;BR /&gt;;&lt;BR /&gt;proc print;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the Log section, it doesn't give me errors but spits out 65 notes! And it gives me blanks with 15 rows for 15 observations..pic attached. Please help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/16389i6DCF62CF317DDEE8/image-size/large?v=1.0&amp;amp;px=-1" border="0" width="593" height="556" title="SAS.PNG" alt="SAS.PNG" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 08:38:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-doesn-t-run-code/m-p/410117#M3836</guid>
      <dc:creator>NewSASUser17</dc:creator>
      <dc:date>2017-11-03T08:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio doesn't run code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-doesn-t-run-code/m-p/410125#M3837</link>
      <description>&lt;P&gt;The code that you've posted runs fine for me - see below&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 61         
 62         data Payroll;
 63         Input Payroll Win;
 64         datalines;
 
 NOTE: The data set WORK.PAYROLL has 30 observations and 2 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.00 seconds
       cpu time            0.00 seconds
       
 95         ;
 
 96         proc print;
 97         run;
 
 NOTE: There were 30 observations read from the data set WORK.PAYROLL.
 NOTE: PROCEDURE PRINT used (Total process time):
       real time           0.07 seconds
       cpu time            0.03 seconds&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;It's possible that the option "obs=0" has been set by an error in some other piece of the code - can you post either the full code or the notes you are getting in your log.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 09:06:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-doesn-t-run-code/m-p/410125#M3837</guid>
      <dc:creator>ChrisBrooks</dc:creator>
      <dc:date>2017-11-03T09:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio doesn't run code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-doesn-t-run-code/m-p/410132#M3839</link>
      <description>&lt;P&gt;Try starting a new session.&amp;nbsp; Things can get stuck in the session, like missing quotes and such like.&amp;nbsp; If it does it with a fresh session show the whole log.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Oh, and don't forget to put the run; after the semicolon in the first datastep - not required, but always good practice and can avoid other issues if you always put run;, and put dots after macro varaibles, and close quotes proplerly etc.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 09:33:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-doesn-t-run-code/m-p/410132#M3839</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-11-03T09:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio doesn't run code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-doesn-t-run-code/m-p/410241#M3846</link>
      <description>&lt;P&gt;It almost always helps to show the code and notes from the log, pasted into a code box using the forum {I} menu icon to preserve formatting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you by any chance copy and paste either the code or the data lines from another document? A moderately common problem is copying from a source that is not a plain text editor (web page, word processing document, PDF or such) and while the result may look like text it can contain hidden characters that cause issues with executing code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have found examples of this issue where the offending codes appeared in the middle of numeric values as well as text, so nothing is safe...&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 14:25:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-doesn-t-run-code/m-p/410241#M3846</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-11-03T14:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio doesn't run code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-doesn-t-run-code/m-p/410251#M3847</link>
      <description>&lt;P&gt;Thank you so much for the reply you all! What I pasted was the full code and below are the Notes from the Log section:&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;61&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;62 data Payroll;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;63 Input Payroll Win;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;64 datalines;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Payroll in line 65 1-6.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Win in line 66 1-6.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;66 CHAR 162.89&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;ZONE 33303322222222222222222222222222222222222222222222222222222222222222222222222222&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;NUMR 16298900000000000000000000000000000000000000000000000000000000000000000000000000&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Payroll=. Win=. _ERROR_=1 _N_=1&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Payroll in line 67 1-6.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Win in line 68 1-6.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;68 CHAR 142.97&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;ZONE 33303322222222222222222222222222222222222222222222222222222222222222222222222222&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;NUMR 14299700000000000000000000000000000000000000000000000000000000000000000000000000&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Payroll=. Win=. _ERROR_=1 _N_=2&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Payroll in line 69 1-6.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Win in line 70 1-6.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;70 CHAR 123.81&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;ZONE 33303322222222222222222222222222222222222222222222222222222222222222222222222222&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;NUMR 12398100000000000000000000000000000000000000000000000000000000000000000000000000&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Payroll=. Win=. _ERROR_=1 _N_=3&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Payroll in line 71 1-6.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Win in line 72 1-6.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72 CHAR 105.80&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;ZONE 33303322222222222222222222222222222222222222222222222222222222222222222222222222&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;NUMR 10598000000000000000000000000000000000000000000000000000000000000000000000000000&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Payroll=. Win=. _ERROR_=1 _N_=4&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Payroll in line 73 1-5.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Win in line 74 1-5.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74 CHAR 98.94&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;ZONE 33033222222222222222222222222222222222222222222222222222222222222222222222222222&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;NUMR 98994000000000000000000000000000000000000000000000000000000000000000000000000000&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Payroll=. Win=. _ERROR_=1 _N_=5&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Payroll in line 75 1-5.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Win in line 76 1-5.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76 CHAR 92.76&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;ZONE 33033222222222222222222222222222222222222222222222222222222222222222222222222222&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;NUMR 92976000000000000000000000000000000000000000000000000000000000000000000000000000&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Payroll=. Win=. _ERROR_=1 _N_=6&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Payroll in line 77 1-5.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Win in line 78 1-5.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;78 CHAR 86.86&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;ZONE 33033222222222222222222222222222222222222222222222222222222222222222222222222222&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;NUMR 86986000000000000000000000000000000000000000000000000000000000000000000000000000&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Payroll=. Win=. _ERROR_=1 _N_=7&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Payroll in line 79 1-5.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Win in line 80 1-5.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;80 CHAR 84.83&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;ZONE 33033222222222222222222222222222222222222222222222222222222222222222222222222222&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;NUMR 84983000000000000000000000000000000000000000000000000000000000000000000000000000&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Payroll=. Win=. _ERROR_=1 _N_=8&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Payroll in line 81 1-5.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Win in line 82 1-5.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;82 CHAR 81.77&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;ZONE 33033222222222222222222222222222222222222222222222222222222222222222222222222222&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;NUMR 81977000000000000000000000000000000000000000000000000000000000000000000000000000&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Payroll=. Win=. _ERROR_=1 _N_=9&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Payroll in line 83 1-5.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Win in line 84 1-5.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;84 CHAR 71.91&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;ZONE 33033222222222222222222222222222222222222222222222222222222222222222222222222222&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;NUMR 71991000000000000000000000000000000000000000000000000000000000000000000000000000&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Payroll=. Win=. _ERROR_=1 _N_=10&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Payroll in line 85 1-5.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Win in line 86 1-5.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;86 CHAR 62.85&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;ZONE 33033222222222222222222222222222222222222222222222222222222222222222222222222222&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;NUMR 62985000000000000000000000000000000000000000000000000000000000000000000000000000&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Payroll=. Win=. _ERROR_=1 _N_=11&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Payroll in line 87 1-5.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Win in line 88 1-5.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;88 CHAR 61.69&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;ZONE 33033222222222222222222222222222222222222222222222222222222222222222222222222222&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;NUMR 61969000000000000000000000000000000000000000000000000000000000000000000000000000&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Payroll=. Win=. _ERROR_=1 _N_=12&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Payroll in line 89 1-5.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Win in line 90 1-5.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;90 CHAR 57.80&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;ZONE 33033222222222222222222222222222222222222222222222222222222222222222222222222222&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;NUMR 57980000000000000000000000000000000000000000000000000000000000000000000000000000&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Payroll=. Win=. _ERROR_=1 _N_=13&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Payroll in line 91 1-5.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Win in line 92 1-5.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;92 CHAR 52.81&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;ZONE 33033222222222222222222222222222222222222222222222222222222222222222222222222222&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;NUMR 52981000000000000000000000000000000000000000000000000000000000000000000000000000&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Payroll=. Win=. _ERROR_=1 _N_=14&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Payroll in line 93 1-5.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data for Win in line 94 1-5.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;94 CHAR 35.57&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;ZONE 33033222222222222222222222222222222222222222222222222222222222222222222222222222&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;NUMR 35957000000000000000000000000000000000000000000000000000000000000000000000000000&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Payroll=. Win=. _ERROR_=1 _N_=15&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: SAS went to a new line when INPUT statement reached past the end of a line.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The data set WORK.PAYROLL has 15 observations and 2 variables.&lt;/DIV&gt;&lt;DIV 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;cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;95 ;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;96 proc print;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;97 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 15 observations read from the data set WORK.PAYROLL.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.03 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.05 seconds&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;98&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;99 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;112&lt;/DIV&gt;&lt;PRE class="sasLog"&gt;&amp;nbsp;&lt;BR /&gt;I even cleaned the cache....still doesn't work&lt;/PRE&gt;</description>
      <pubDate>Fri, 03 Nov 2017 14:44:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-doesn-t-run-code/m-p/410251#M3847</guid>
      <dc:creator>NewSASUser17</dc:creator>
      <dc:date>2017-11-03T14:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio doesn't run code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-doesn-t-run-code/m-p/410254#M3848</link>
      <description>&lt;P&gt;Thank you&amp;nbsp; RWA for the suggestion to put run earlier as well. I did try another session and got stuck...in fact I tried rerunning quite a few times...I am not very&amp;nbsp;SAS savvy yet and not being able to troubleshoot is really not helping me&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 14:46:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-doesn-t-run-code/m-p/410254#M3848</guid>
      <dc:creator>NewSASUser17</dc:creator>
      <dc:date>2017-11-03T14:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio doesn't run code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-doesn-t-run-code/m-p/410260#M3849</link>
      <description>&lt;P&gt;As per&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;, post the log.&amp;nbsp; Check where the code is coming from.&amp;nbsp; Something is amis there as your code seems fine, but we cannot debug without some info.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 14:48:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-doesn-t-run-code/m-p/410260#M3849</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-11-03T14:48:03Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio doesn't run code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-doesn-t-run-code/m-p/410264#M3851</link>
      <description>&lt;P&gt;I didn't see {i} option...using to share my code again&lt;/P&gt;&lt;PRE&gt;data Payroll;
Input Payroll Win;
datalines;
206	95
162	89
146	75
142	97
134	79
123	81
106	88
105	80
99	92
98	94
95	80
92	76
86	61
86	86
84	91
84	83
82	66
81	77
72	96
71	91
71	67
62	85
61	65
61	69
61	69
57	80
55	90
52	81
38	90
35	57
;
proc print;
run;&lt;/PRE&gt;</description>
      <pubDate>Fri, 03 Nov 2017 14:50:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-doesn-t-run-code/m-p/410264#M3851</guid>
      <dc:creator>NewSASUser17</dc:creator>
      <dc:date>2017-11-03T14:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Studio doesn't run code</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-doesn-t-run-code/m-p/410270#M3853</link>
      <description>&lt;P&gt;You probably have TABS in your data lines.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Either replace them with spaces or add an INFILE statement so you can specify the DLM= or EXPANDTABS options.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 14:57:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Studio-doesn-t-run-code/m-p/410270#M3853</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-11-03T14:57:34Z</dc:date>
    </item>
  </channel>
</rss>

