<?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 Beginer- Issue faced in university edition in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-Beginer-Issue-faced-in-university-edition/m-p/556075#M154853</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks for your support!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Issue got resolved, It is due to the semicolon I didnt get results properly.&lt;/P&gt;</description>
    <pubDate>Fri, 03 May 2019 19:34:01 GMT</pubDate>
    <dc:creator>Deepak13</dc:creator>
    <dc:date>2019-05-03T19:34:01Z</dc:date>
    <item>
      <title>SAS Beginer- Issue faced in university edition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Beginer-Issue-faced-in-university-edition/m-p/555716#M154672</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;data Icecream_Sales;&lt;BR /&gt;Infile "/folders/myshortcuts/Myfolders/Imports/Sales.dat";&lt;BR /&gt;Firstobs= 2 obs= 2;&lt;BR /&gt;Input Flavours :$9. Prd_cd Price;&lt;BR /&gt;run;&lt;BR /&gt;proc print data=icecream_sales;&lt;BR /&gt;run;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;data Stud_scores;&lt;BR /&gt;infile "/folders/myshortcuts/Myfolders/Imports/Scores.dat";&lt;BR /&gt;Missover;&lt;BR /&gt;input Names $ L M P C B;&lt;BR /&gt;run;&lt;BR /&gt;proc print data=stud_scores;&lt;BR /&gt;run;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;data Stud_address;&lt;BR /&gt;infile "/folders/myshortcuts/Myfolders/Imports/Address.dat";&lt;BR /&gt;Truncover;&lt;BR /&gt;input Names $15. Suite Street $16.;&lt;BR /&gt;run;&lt;BR /&gt;proc print data=stud_address;&lt;BR /&gt;run;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Icecream_Sales;
Infile "/folders/myshortcuts/Myfolders/Imports/Sales.dat";
Firstobs= 2 obs= 2;
Input Flavours :$9. Prd_cd Price;
run;
proc print data=icecream_sales;
run;


data Stud_scores;
infile "/folders/myshortcuts/Myfolders/Imports/Scores.dat";
Missover;
input Names $ L M P C B;
run;
proc print data=stud_scores;
run;

data Stud_address;
infile "/folders/myshortcuts/Myfolders/Imports/Address.dat";
Truncover;
input Names $15. Suite Street $15.;
run;
proc print data=stud_address;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hi, when i tried running this above 3 programs in university edition, unable to generate desired results.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: when i entered missover, truncover and firstobs function no change of colour occured.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have attached the raw data sets.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2019 18:34:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Beginer-Issue-faced-in-university-edition/m-p/555716#M154672</guid>
      <dc:creator>Deepak13</dc:creator>
      <dc:date>2019-05-02T18:34:37Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Beginer- Issue faced in university edition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Beginer-Issue-faced-in-university-edition/m-p/555717#M154673</link>
      <description>&lt;P&gt;Can you explain what you are trying to achieve?&lt;BR /&gt;From the code, I can see you have some syntax errors. You have semicolons at the end of the infile statement lines followed by infile options which should be part of the infile statement. e.g.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Icecream_Sales;
Infile "/folders/myshortcuts/Myfolders/Imports/Sales.dat" /* You have a semicolon here that needs deleting*/ Firstobs= 2 obs= 2;
Input Flavours :$9. Prd_cd Price;
run;
proc print data=icecream_sales;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 02 May 2019 18:40:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Beginer-Issue-faced-in-university-edition/m-p/555717#M154673</guid>
      <dc:creator>AMSAS</dc:creator>
      <dc:date>2019-05-02T18:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Beginer- Issue faced in university edition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Beginer-Issue-faced-in-university-edition/m-p/555780#M154711</link>
      <description>&lt;P&gt;Always examine the log after running code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Go to the log after running the code, copy the log with the (I expect) error messages, and paste here into a code box opened using the forum's {I} or "running man" icons.&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2019 21:41:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Beginer-Issue-faced-in-university-edition/m-p/555780#M154711</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-05-02T21:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Beginer- Issue faced in university edition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Beginer-Issue-faced-in-university-edition/m-p/556075#M154853</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks for your support!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Issue got resolved, It is due to the semicolon I didnt get results properly.&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2019 19:34:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Beginer-Issue-faced-in-university-edition/m-p/556075#M154853</guid>
      <dc:creator>Deepak13</dc:creator>
      <dc:date>2019-05-03T19:34:01Z</dc:date>
    </item>
  </channel>
</rss>

