<?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: DATAINLINES in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/DATAINLINES/m-p/540181#M7192</link>
    <description>You have extra semicolons in the LABEL statement.  Remove them (except the final one).</description>
    <pubDate>Mon, 04 Mar 2019 19:42:37 GMT</pubDate>
    <dc:creator>Astounding</dc:creator>
    <dc:date>2019-03-04T19:42:37Z</dc:date>
    <item>
      <title>DATAINLINES</title>
      <link>https://communities.sas.com/t5/New-SAS-User/DATAINLINES/m-p/540178#M7191</link>
      <description>&lt;P&gt;Hi , Below is the code. Please elt me know why&amp;nbsp; I get blanks for the coulumns E to H and 'I' under the coumn&amp;nbsp; I instead of 'Yes'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data SAMPLE;&lt;BR /&gt;&lt;BR /&gt;input A $ B $ C $ D&lt;BR /&gt;E F G H I $ ;&lt;BR /&gt;label A="A"&lt;BR /&gt;B="B"&lt;BR /&gt;C="C"&lt;BR /&gt;D="D";&lt;BR /&gt;E="E";&lt;BR /&gt;F="F";&lt;BR /&gt;G="G";&lt;BR /&gt;H="H";&lt;BR /&gt;I="I";&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;datalines;&lt;BR /&gt;CIT 05792 1/1/2016 225000 60000 1017815&amp;nbsp; 4924600 233978 YES&lt;BR /&gt;CIT 05792 1/1/2016 225000 60000 1017815 4946901 472 YES&lt;BR /&gt;CARL 05295 1/1/2017 175000 50000 10187296 302304 136097 YES&lt;BR /&gt;CARL 05295 1/1/2017 175000 50000 10187296 900400 88954 YES&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; B&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; C&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;D&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; E F G H&amp;nbsp; &amp;nbsp;I&lt;BR /&gt;CIT&amp;nbsp; &amp;nbsp; 05792 1/1/2016&amp;nbsp; 225000 . . . .&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I&lt;BR /&gt;CIT&amp;nbsp; &amp;nbsp; &amp;nbsp;05792 1/1/2016&amp;nbsp; 225000 . . . .&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;I&lt;BR /&gt;CARL 05295 1/1/2017&amp;nbsp; 175000 . . . .&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;I&lt;BR /&gt;CARL 05295 1/1/2017&amp;nbsp; 175000 . . . .&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;I&lt;BR /&gt;;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 19:34:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/DATAINLINES/m-p/540178#M7191</guid>
      <dc:creator>DLROW</dc:creator>
      <dc:date>2019-03-04T19:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: DATAINLINES</title>
      <link>https://communities.sas.com/t5/New-SAS-User/DATAINLINES/m-p/540181#M7192</link>
      <description>You have extra semicolons in the LABEL statement.  Remove them (except the final one).</description>
      <pubDate>Mon, 04 Mar 2019 19:42:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/DATAINLINES/m-p/540181#M7192</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-03-04T19:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: DATAINLINES</title>
      <link>https://communities.sas.com/t5/New-SAS-User/DATAINLINES/m-p/540182#M7193</link>
      <description>your log will tell you why.  E is numeric.</description>
      <pubDate>Mon, 04 Mar 2019 19:42:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/DATAINLINES/m-p/540182#M7193</guid>
      <dc:creator>tomrvincent</dc:creator>
      <dc:date>2019-03-04T19:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: DATAINLINES</title>
      <link>https://communities.sas.com/t5/New-SAS-User/DATAINLINES/m-p/540183#M7194</link>
      <description>&lt;P&gt;syntax issue in your label statement&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;correction:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data SAMPLE;
input A $ B $ C $ D E F G H I $ ;
label A="A"
B="B"
C="C"
D="D"
E="E"
F="F"
G="G"
H="H"
I="I";
datalines;
CIT 05792 1/1/2016 225000 60000 1017815  4924600 233978 YES
CIT 05792 1/1/2016 225000 60000 1017815 4946901 472 YES
CARL 05295 1/1/2017 175000 50000 10187296 302304 136097 YES
CARL 05295 1/1/2017 175000 50000 10187296 900400 88954 YES
;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 Mar 2019 19:43:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/DATAINLINES/m-p/540183#M7194</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-03-04T19:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: DATAINLINES</title>
      <link>https://communities.sas.com/t5/New-SAS-User/DATAINLINES/m-p/540184#M7195</link>
      <description>&lt;P&gt;Because you have semicolons in your LABEL statement, transforming it into a series of assignments.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 19:43:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/DATAINLINES/m-p/540184#M7195</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-03-04T19:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: DATAINLINES</title>
      <link>https://communities.sas.com/t5/New-SAS-User/DATAINLINES/m-p/540187#M7196</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;"transforming it into a series of assignments"&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's what makes &lt;STRONG&gt;Prodigygeniusstats aka PGstats exquisite&lt;/STRONG&gt;, My oh My, that's attention to detail. Class!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/462"&gt;@PGStats&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Because you have semicolons in your LABEL statement, transforming it into a series of assignments.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 19:46:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/DATAINLINES/m-p/540187#M7196</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-03-04T19:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: DATAINLINES</title>
      <link>https://communities.sas.com/t5/New-SAS-User/DATAINLINES/m-p/540189#M7197</link>
      <description>&lt;P&gt;Thank you all!&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 19:48:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/DATAINLINES/m-p/540189#M7197</guid>
      <dc:creator>DLROW</dc:creator>
      <dc:date>2019-03-04T19:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: DATAINLINES</title>
      <link>https://communities.sas.com/t5/New-SAS-User/DATAINLINES/m-p/540204#M7198</link>
      <description>&lt;P&gt;Your program/date works fine for me.&lt;/P&gt;
&lt;P&gt;Something must have gotten lost in translating your code into your posting.&lt;/P&gt;
&lt;P&gt;Perhaps you can post lines from your SAS log?&amp;nbsp; Make sure to use the insert Code pop-up window to preserve formatting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data SAMPLE;
 input A $ B $ C $ D E F G H I $ ;
datalines;
CIT 05792 1/1/2016 225000 60000 1017815  4924600 233978 YES
CIT 05792 1/1/2016 225000 60000 1017815 4946901 472 YES
CARL 05295 1/1/2017 175000 50000 10187296 302304 136097 YES
CARL 05295 1/1/2017 175000 50000 10187296 900400 88954 YES
;
proc print;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27644i91C6C644ED6C2F93/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 20:35:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/DATAINLINES/m-p/540204#M7198</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-03-04T20:35:54Z</dc:date>
    </item>
  </channel>
</rss>

