<?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 In complete output of SAS program is SAS studio, University Edition in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/In-complete-output-of-SAS-program-is-SAS-studio-University/m-p/320222#M70490</link>
    <description>&lt;P&gt;data weight_club;&lt;/P&gt;&lt;P&gt;input IdNumber 1-4 Name $ 6-24 Team $ StartWeight EndWeight;&lt;/P&gt;&lt;P&gt;Loss=StartWeight-EndWeight;&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;1023 David Shaw red 189 165&lt;/P&gt;&lt;P&gt;1049 Amelia Serrano yellow 145 124&lt;/P&gt;&lt;P&gt;1219 Alan Nance red 210 192&lt;/P&gt;&lt;P&gt;1246 Ravi Sinha yellow 194 177&lt;/P&gt;&lt;P&gt;1078 Ashley McKnight red 127 118&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;</description>
    <pubDate>Tue, 20 Dec 2016 14:02:37 GMT</pubDate>
    <dc:creator>Kadathur970</dc:creator>
    <dc:date>2016-12-20T14:02:37Z</dc:date>
    <item>
      <title>In complete output of SAS program is SAS studio, University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/In-complete-output-of-SAS-program-is-SAS-studio-University/m-p/320222#M70490</link>
      <description>&lt;P&gt;data weight_club;&lt;/P&gt;&lt;P&gt;input IdNumber 1-4 Name $ 6-24 Team $ StartWeight EndWeight;&lt;/P&gt;&lt;P&gt;Loss=StartWeight-EndWeight;&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;1023 David Shaw red 189 165&lt;/P&gt;&lt;P&gt;1049 Amelia Serrano yellow 145 124&lt;/P&gt;&lt;P&gt;1219 Alan Nance red 210 192&lt;/P&gt;&lt;P&gt;1246 Ravi Sinha yellow 194 177&lt;/P&gt;&lt;P&gt;1078 Ashley McKnight red 127 118&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2016 14:02:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/In-complete-output-of-SAS-program-is-SAS-studio-University/m-p/320222#M70490</guid>
      <dc:creator>Kadathur970</dc:creator>
      <dc:date>2016-12-20T14:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: In complete output of SAS program is SAS studio, University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/In-complete-output-of-SAS-program-is-SAS-studio-University/m-p/320227#M70492</link>
      <description>&lt;P&gt;Name should occupy the positions 6 to 24. Add spaces.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data weight_club;
input IdNumber 1-4 Name $ 6-24 Team $ StartWeight EndWeight;
Loss=StartWeight-EndWeight;
datalines;
1023 David Shaw         red 189 165
1049 Amelia Serrano     yellow 145 124
1219 Alan Nance         red 210 192
1246 Ravi Sinha         yellow 194 177
1078 Ashley McKnight    red 127 118
;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Dec 2016 14:17:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/In-complete-output-of-SAS-program-is-SAS-studio-University/m-p/320227#M70492</guid>
      <dc:creator>gamotte</dc:creator>
      <dc:date>2016-12-20T14:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: In complete output of SAS program is SAS studio, University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/In-complete-output-of-SAS-program-is-SAS-studio-University/m-p/320256#M70496</link>
      <description>&lt;P&gt;The data is not read properly with the code you provided, because you mentioned column 6-24 to read the Name, but actually if you see 6-24 columns data it takes the values other then name.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; weight_club;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;input&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; IdNumber &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;-&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;4&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt; Name $ &amp;amp; &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;20.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt; Team $ StartWeight EndWeight;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Loss=StartWeight-EndWeight;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;datalines&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;1023 David Shaw red 189 165&lt;/P&gt;&lt;P&gt;1049 Amelia Serrano yellow 145 124&lt;/P&gt;&lt;P&gt;1219 Alan Nance red 210 192&lt;/P&gt;&lt;P&gt;1246 Ravi Sinha yellow 194 177&lt;/P&gt;&lt;P&gt;1078 Ashley McKnight red 127 118&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Make sure the space between the data is two blanks other then between names. i.e space between 1023 and David is two blanks and space between David and shaw is one blank only. "&amp;amp;" here is used to treat the name seperated by single blank as one whole name.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2016 14:59:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/In-complete-output-of-SAS-program-is-SAS-studio-University/m-p/320256#M70496</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2016-12-20T14:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: In complete output of SAS program is SAS studio, University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/In-complete-output-of-SAS-program-is-SAS-studio-University/m-p/320295#M70517</link>
      <description>&lt;P&gt;Thank your for the suggestion. I could get dataset table with all the obs and variables.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2016 16:26:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/In-complete-output-of-SAS-program-is-SAS-studio-University/m-p/320295#M70517</guid>
      <dc:creator>Kadathur970</dc:creator>
      <dc:date>2016-12-20T16:26:01Z</dc:date>
    </item>
  </channel>
</rss>

