<?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: What is the difference between Missover and Truncover? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/531297#M145397</link>
    <description>&lt;P&gt;missover sets a variable where not enough data is present to missing, while truncover reads what's available:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
file '$HOME/test.txt';
input testvar $10.;
put testvar;
cards;
1234567890
1234
;
run;

data test1;
infile '$HOME/test.txt' missover;
input testvar $10.;
run;

data test2;
infile '$HOME/test.txt' truncover;
input testvar $10.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;In test1, testvar will be empty for the second observation, while in test2, it gets the "1234".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;truncover is newer and preferred.&lt;/P&gt;</description>
    <pubDate>Wed, 30 Jan 2019 09:28:41 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2019-01-30T09:28:41Z</dc:date>
    <item>
      <title>What is the difference between Missover and Truncover?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/531294#M145395</link>
      <description />
      <pubDate>Wed, 30 Jan 2019 09:17:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/531294#M145395</guid>
      <dc:creator>kanakaiahk</dc:creator>
      <dc:date>2019-01-30T09:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between Missover and Truncover?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/531297#M145397</link>
      <description>&lt;P&gt;missover sets a variable where not enough data is present to missing, while truncover reads what's available:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
file '$HOME/test.txt';
input testvar $10.;
put testvar;
cards;
1234567890
1234
;
run;

data test1;
infile '$HOME/test.txt' missover;
input testvar $10.;
run;

data test2;
infile '$HOME/test.txt' truncover;
input testvar $10.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;In test1, testvar will be empty for the second observation, while in test2, it gets the "1234".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;truncover is newer and preferred.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 09:28:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/531297#M145397</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-01-30T09:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between Missover and Truncover?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/531298#M145398</link>
      <description>&lt;P&gt;There are papers on this:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings/proceedings/sugi26/p009-26.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings/proceedings/sugi26/p009-26.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Other people have asked the same question:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/td-p/31888" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/td-p/31888&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Plus plenty of other material on a quick Google search which should answer this question.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 09:31:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/531298#M145398</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2019-01-30T09:31:33Z</dc:date>
    </item>
  </channel>
</rss>

