<?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 missing value in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/missing-value/m-p/506733#M135830</link>
    <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I want to ask please about a missing value in a char var.&lt;/P&gt;
&lt;P&gt;In this example there is a missing value in a char var.&lt;/P&gt;
&lt;P&gt;Why should we use point (.) symbol and not a blank to represent a missing value?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data tbl;
   length name $ 12;
   input name $ score1 score2;
   datalines;
Riley 1132 1187
Henderson 1015 1102
.    1018  1027
;
Run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 23 Oct 2018 05:01:20 GMT</pubDate>
    <dc:creator>Ronein</dc:creator>
    <dc:date>2018-10-23T05:01:20Z</dc:date>
    <item>
      <title>missing value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/missing-value/m-p/506733#M135830</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I want to ask please about a missing value in a char var.&lt;/P&gt;
&lt;P&gt;In this example there is a missing value in a char var.&lt;/P&gt;
&lt;P&gt;Why should we use point (.) symbol and not a blank to represent a missing value?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data tbl;
   length name $ 12;
   input name $ score1 score2;
   datalines;
Riley 1132 1187
Henderson 1015 1102
.    1018  1027
;
Run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Oct 2018 05:01:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/missing-value/m-p/506733#M135830</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2018-10-23T05:01:20Z</dc:date>
    </item>
    <item>
      <title>Re: missing value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/missing-value/m-p/506739#M135831</link>
      <description>&lt;P&gt;Run it with a blank instead of the dot and look at the log.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Oct 2018 05:33:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/missing-value/m-p/506739#M135831</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-10-23T05:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: missing value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/missing-value/m-p/506740#M135832</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In your case, you can use a&amp;nbsp;&lt;SPAN&gt;blank to represent a missing value for character variable .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;For you example , in place of .(dot) if you want to place a space (blank) you can use DSD and DLM options with infile statement.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data tbl;
   length name $ 12;
   infile datalines dsd dlm='';
   input name $ score1 score2;
   datalines;
Riley 1132 1187
Henderson 1015 1102
 1018 1027
;
Run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Oct 2018 05:38:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/missing-value/m-p/506740#M135832</guid>
      <dc:creator>singhsahab</dc:creator>
      <dc:date>2018-10-23T05:38:56Z</dc:date>
    </item>
  </channel>
</rss>

