<?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 list input missing varible values reason in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/list-input-missing-varible-values-reason/m-p/685673#M24309</link>
    <description>&lt;PRE&gt;data news; &lt;BR /&gt;input Score 13. Last_Name : $10. (Ans1-Ans3)($1.);&lt;BR /&gt;datalines;&lt;BR /&gt;12345678 raje Abc&lt;BR /&gt;12345678901234 raje Abc&lt;BR /&gt;65 sMITH CCd&lt;BR /&gt;95 scerbo DeD&lt;BR /&gt;;&lt;BR /&gt;proc print;run;





&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rajeshm_2-1600777450229.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/49639i61B83719E4E4B30F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rajeshm_2-1600777450229.png" alt="rajeshm_2-1600777450229.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1obs: score=12345678 raje,so missing&amp;nbsp; and&amp;nbsp;&amp;nbsp; last_name=abc&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ----&amp;gt;fine&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;but ans1 and ans2 and ans3 should read from next row first values automatically , right?&lt;/P&gt;
&lt;P&gt;but why this is not happening??&lt;/P&gt;</description>
    <pubDate>Tue, 22 Sep 2020 12:28:25 GMT</pubDate>
    <dc:creator>rajeshm</dc:creator>
    <dc:date>2020-09-22T12:28:25Z</dc:date>
    <item>
      <title>list input missing varible values reason</title>
      <link>https://communities.sas.com/t5/New-SAS-User/list-input-missing-varible-values-reason/m-p/685673#M24309</link>
      <description>&lt;PRE&gt;data news; &lt;BR /&gt;input Score 13. Last_Name : $10. (Ans1-Ans3)($1.);&lt;BR /&gt;datalines;&lt;BR /&gt;12345678 raje Abc&lt;BR /&gt;12345678901234 raje Abc&lt;BR /&gt;65 sMITH CCd&lt;BR /&gt;95 scerbo DeD&lt;BR /&gt;;&lt;BR /&gt;proc print;run;





&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rajeshm_2-1600777450229.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/49639i61B83719E4E4B30F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rajeshm_2-1600777450229.png" alt="rajeshm_2-1600777450229.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1obs: score=12345678 raje,so missing&amp;nbsp; and&amp;nbsp;&amp;nbsp; last_name=abc&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ----&amp;gt;fine&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;but ans1 and ans2 and ans3 should read from next row first values automatically , right?&lt;/P&gt;
&lt;P&gt;but why this is not happening??&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2020 12:28:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/list-input-missing-varible-values-reason/m-p/685673#M24309</guid>
      <dc:creator>rajeshm</dc:creator>
      <dc:date>2020-09-22T12:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: list input missing varible values reason</title>
      <link>https://communities.sas.com/t5/New-SAS-User/list-input-missing-varible-values-reason/m-p/685674#M24310</link>
      <description>&lt;P&gt;You need to pay attention to details.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;12345678901234 is 14 digits. If you read it using an informat of 13. it reads the first 13 digits and then the 4 at the end of the number is the first character of Last_Name.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2020 12:31:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/list-input-missing-varible-values-reason/m-p/685674#M24310</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-09-22T12:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: list input missing varible values reason</title>
      <link>https://communities.sas.com/t5/New-SAS-User/list-input-missing-varible-values-reason/m-p/685678#M24311</link>
      <description>&lt;P&gt;DATALINES are automatically padded (with blanks) to 80 characters. Since you do not use the colon modifier for the $1. informat, blanks are read from zhe padding of the first line into ans1 to ans3.&lt;/P&gt;
&lt;P&gt;Then 13 digits are read into score, the next digit (up to the following blank) is read into last_name, and the first three characters of "raje" are read into ans1 to ans3.&lt;/P&gt;
&lt;P&gt;Then the first 13 characters are read as missing value into score, and the colon modifier for the $10. informat causes a skip to the next line (the padding is read as one delimiter!), so "95" is read into last_name, and the first three characters of "scerbo" end up in ans1 to ans3.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2020 12:41:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/list-input-missing-varible-values-reason/m-p/685678#M24311</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-09-22T12:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: list input missing varible values reason</title>
      <link>https://communities.sas.com/t5/New-SAS-User/list-input-missing-varible-values-reason/m-p/685688#M24312</link>
      <description>Thanks a lot for the details explanation.&lt;BR /&gt;Due to : operator in Last_Name it skipped and read the value in next line(3rd row) ?&lt;BR /&gt;ans 1-answ 3 read the blanks in the same line as there is  no : operator in (1st row)?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 22 Sep 2020 13:14:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/list-input-missing-varible-values-reason/m-p/685688#M24312</guid>
      <dc:creator>rajeshm</dc:creator>
      <dc:date>2020-09-22T13:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: list input missing varible values reason</title>
      <link>https://communities.sas.com/t5/New-SAS-User/list-input-missing-varible-values-reason/m-p/685691#M24313</link>
      <description>&lt;P&gt;What I said.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2020 13:22:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/list-input-missing-varible-values-reason/m-p/685691#M24313</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-09-22T13:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: list input missing varible values reason</title>
      <link>https://communities.sas.com/t5/New-SAS-User/list-input-missing-varible-values-reason/m-p/685693#M24314</link>
      <description>&lt;P&gt;if my question is not clear to you, i am so sorry.&lt;/P&gt;
&lt;P&gt;first observation, ans1-ans3 varibles values&amp;nbsp;are empty and guessed those&amp;nbsp; should read in the next line but due to default length is 80 and there is no : operator, it will not read next row values.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2020 13:43:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/list-input-missing-varible-values-reason/m-p/685693#M24314</guid>
      <dc:creator>rajeshm</dc:creator>
      <dc:date>2020-09-22T13:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: list input missing varible values reason</title>
      <link>https://communities.sas.com/t5/New-SAS-User/list-input-missing-varible-values-reason/m-p/685754#M24316</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/52150"&gt;@rajeshm&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;if my question is not clear to you, i am so sorry.&lt;/P&gt;
&lt;P&gt;first observation, ans1-ans3 varibles values&amp;nbsp;are empty and guessed those&amp;nbsp; should read in the next line but due to default length is 80 and there is no : operator, it will not read next row values.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Exactly.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2020 16:25:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/list-input-missing-varible-values-reason/m-p/685754#M24316</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-09-22T16:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: list input missing varible values reason</title>
      <link>https://communities.sas.com/t5/New-SAS-User/list-input-missing-varible-values-reason/m-p/686110#M24380</link>
      <description>&lt;P&gt;instead of raising another related query here,&amp;nbsp; raised in different thread as this query is already resolved.&lt;/P&gt;
&lt;P&gt;expecting answer from you.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/New-SAS-User/list-input-missing-varible-values-reason2/m-p/686104" target="_blank"&gt;https://communities.sas.com/t5/New-SAS-User/list-input-missing-varible-values-reason2/m-p/686104&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;can you give me hint ,in which case program will read second row for first observation varibles and in which case it is not. still confusing..&lt;/P&gt;</description>
      <pubDate>Wed, 23 Sep 2020 15:54:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/list-input-missing-varible-values-reason/m-p/686110#M24380</guid>
      <dc:creator>rajeshm</dc:creator>
      <dc:date>2020-09-23T15:54:23Z</dc:date>
    </item>
  </channel>
</rss>

