<?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 exactly is the difference between missover and truncover? in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168472#M3278</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MISSOVER is an old option and for most situations you should use TRUNCOVER instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only place where it might be useful is when you have a field where a truncated value would be invalid, such as a phone number of an zip code.&lt;/P&gt;&lt;P&gt;But even then I would rather read the value from the line and then add code to handle truncated values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 04 Jan 2015 20:42:27 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2015-01-04T20:42:27Z</dc:date>
    <item>
      <title>What exactly is the difference between missover and truncover?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168468#M3274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what exactly is the difference between missover and truncover?&lt;/P&gt;&lt;P&gt;As per as my knowledge missover is used if the last variable values are missing and we want SAS to assign missing value.&lt;/P&gt;&lt;P&gt;Truncover is used if some of the values of the input statement is less&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Correct me ,with exact difference?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And also which is best &lt;/P&gt;&lt;P&gt;proc import over infille to bring the external file ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Jan 2015 09:05:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168468#M3274</guid>
      <dc:creator>venkatnaveen</dc:creator>
      <dc:date>2015-01-04T09:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: What exactly is the difference between missover and truncover?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168469#M3275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;missover is washed-up. As far as I know truncover is the same with missover + pad ,truncover is new feature for the purpose of replacing missover .&lt;/P&gt;&lt;P&gt;Here is an example .&lt;/P&gt;&lt;P&gt;create a txt file contains the following .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hariv&lt;/P&gt;&lt;P&gt;Amita&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Bachchan &lt;/P&gt;&lt;P&gt;Abhishek &lt;/P&gt;&lt;P&gt;Aradhaya&amp;nbsp;&amp;nbsp; Bachchan &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTICE: after Hariv or Abhishek , there is not blanks only a&amp;nbsp; carriage character.&lt;/P&gt;&lt;P&gt;and run the following code , you will get wrong result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data Forms;&lt;/P&gt;&lt;P&gt;infile 'c:\temp\x.txt' missover ;&lt;/P&gt;&lt;P&gt;input&amp;nbsp; Parent&amp;nbsp; $ 1-10 Child&amp;nbsp; $ 11-40 ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but if you add PAD in it , the result is right .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data Forms;&lt;/P&gt;&lt;P&gt;infile 'c:\temp\x.txt' missover pad;&lt;/P&gt;&lt;P&gt;input&amp;nbsp; Parent&amp;nbsp; $ 1-10 Child&amp;nbsp; $ 11-40 ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or you can change it into truncover , it is also and always right . Therefore truncover is better than missover.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data Forms;&lt;/P&gt;&lt;P&gt;infile 'c:\temp\x.txt' truncover;&lt;/P&gt;&lt;P&gt;input&amp;nbsp; Parent&amp;nbsp; $ 1-10 Child&amp;nbsp; $ 11-40 ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;Xia Keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Jan 2015 11:55:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168469#M3275</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-01-04T11:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: What exactly is the difference between missover and truncover?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168470#M3276</link>
      <description>&lt;P&gt;Here a useful link &lt;A title="http://support.sas.com/documentation/cdl/en/basess/58133/HTML/default/viewer.htm#a002645812.htm" href="http://go.documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.2&amp;amp;docsetId=basess&amp;amp;docsetTarget=n0577hqny9aawin1oboemz48yq11.htm&amp;amp;locale=en"&gt;Step-by-Step Programming with Base SAS(R) Software&lt;/A&gt; which is something posted in 2011 and which I found searching this forum with terms "&lt;SPAN style="font-family: inherit; font-weight: inherit; font-size: 10pt; line-height: 1.5em; background-color: #ffffcd;"&gt;&lt;EM class="jive-hilite"&gt;difference&lt;/EM&gt;&lt;/SPAN&gt; &lt;SPAN style="font-family: inherit; font-weight: inherit; font-size: 10pt; line-height: 1.5em; background-color: #ffffcd;"&gt;&lt;EM class="jive-hilite"&gt;between&lt;/EM&gt;&lt;/SPAN&gt; &lt;SPAN style="font-family: inherit; font-weight: inherit; font-size: 10pt; line-height: 1.5em; background-color: #ffffcd;"&gt;&lt;EM class="jive-hilite"&gt;missover&lt;/EM&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: inherit; font-style: inherit; font-weight: inherit; font-size: 10pt; line-height: 1.5em;"&gt; and &lt;/SPAN&gt;&lt;SPAN style="font-family: inherit; font-weight: inherit; font-size: 10pt; line-height: 1.5em; background-color: #ffffcd;"&gt;&lt;EM class="jive-hilite"&gt;truncover&lt;/EM&gt;&lt;/SPAN&gt;".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Additional links:&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="xis-xrefSee"&gt;&lt;A class="ng-scope" tabindex="0" title="" href="http://go.documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.2&amp;amp;docsetId=lestmtsref&amp;amp;docsetTarget=n1rill4udj0tfun1fvce3j401plo.htm&amp;amp;locale=en#p1fdvsp2n4yna3n1ht0222w1okyl" rel="nofollow" data-docset-id="lestmtsref" data-docset-version="9.4" data-original-href="n1rill4udj0tfun1fvce3j401plo.htm#p1fdvsp2n4yna3n1ht0222w1okyl"&gt;Reading Past the End of a Line&lt;/A&gt;&lt;SPAN class="xis-xrefText"&gt;,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="xis-xrefSee"&gt;&lt;A class="ng-scope" tabindex="0" title="" href="http://go.documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.2&amp;amp;docsetId=lestmtsref&amp;amp;docsetTarget=n1rill4udj0tfun1fvce3j401plo.htm&amp;amp;locale=en#n1sr4to5u81m4yn1648e5a0wdd0b" rel="nofollow" data-docset-id="lestmtsref" data-docset-version="9.4" data-original-href="n1rill4udj0tfun1fvce3j401plo.htm#n1sr4to5u81m4yn1648e5a0wdd0b"&gt;MISSOVER&lt;/A&gt;&lt;SPAN class="xis-xrefText"&gt;,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="xis-xrefSee"&gt;&lt;A class="ng-scope" tabindex="0" title="" href="http://go.documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.2&amp;amp;docsetId=lestmtsref&amp;amp;docsetTarget=n1rill4udj0tfun1fvce3j401plo.htm&amp;amp;locale=en#p0zyzk9oz30aagn10atej6vw9n77" rel="nofollow" data-docset-id="lestmtsref" data-docset-version="9.4" data-original-href="n1rill4udj0tfun1fvce3j401plo.htm#p0zyzk9oz30aagn10atej6vw9n77"&gt;STOPOVER&lt;/A&gt;&lt;SPAN class="xis-xrefText"&gt;, and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="xis-xrefSee"&gt;&lt;A class="ng-scope" tabindex="0" title="" href="http://go.documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.2&amp;amp;docsetId=lestmtsref&amp;amp;docsetTarget=n1rill4udj0tfun1fvce3j401plo.htm&amp;amp;locale=en#p1w53eurb5rzvsn1sf102hn7ticw" rel="nofollow" data-docset-id="lestmtsref" data-docset-version="9.4" data-original-href="n1rill4udj0tfun1fvce3j401plo.htm#p1w53eurb5rzvsn1sf102hn7ticw"&gt;TRUNCOVER&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 15:59:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168470#M3276</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2017-12-13T15:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: What exactly is the difference between missover and truncover?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168471#M3277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;proc import over infille to bring the external file ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Use PROC IMPORT when the file's format is unknown to you or you just want to get a quick conversion without a lot of coding.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;If the format is well defined then you will have much more control and get better results by writing your own program.&amp;nbsp; You can also just run the PROC IMPORT interactively and recall the code that it generates as a starting point for writing your own data step.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Jan 2015 19:21:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168471#M3277</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2015-01-04T19:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: What exactly is the difference between missover and truncover?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168472#M3278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MISSOVER is an old option and for most situations you should use TRUNCOVER instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only place where it might be useful is when you have a field where a truncated value would be invalid, such as a phone number of an zip code.&lt;/P&gt;&lt;P&gt;But even then I would rather read the value from the line and then add code to handle truncated values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Jan 2015 20:42:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168472#M3278</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2015-01-04T20:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: What exactly is the difference between missover and truncover?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168473#M3279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a ton.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2015 05:47:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168473#M3279</guid>
      <dc:creator>venkatnaveen</dc:creator>
      <dc:date>2015-01-05T05:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: What exactly is the difference between missover and truncover?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168474#M3280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a ton.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2015 05:47:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168474#M3280</guid>
      <dc:creator>venkatnaveen</dc:creator>
      <dc:date>2015-01-05T05:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: What exactly is the difference between missover and truncover?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168475#M3281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a ton.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2015 05:48:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168475#M3281</guid>
      <dc:creator>venkatnaveen</dc:creator>
      <dc:date>2015-01-05T05:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: What exactly is the difference between missover and truncover?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168476#M3282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2015 05:49:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168476#M3282</guid>
      <dc:creator>venkatnaveen</dc:creator>
      <dc:date>2015-01-05T05:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: What exactly is the difference between missover and truncover?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168477#M3283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2015 05:53:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168477#M3283</guid>
      <dc:creator>venkatnaveen</dc:creator>
      <dc:date>2015-01-05T05:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: What exactly is the difference between missover and truncover?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168478#M3284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can say best "thank you" by marking answers as helpful and correct &lt;A _jive_internal="true" href="https://communities.sas.com/message/242631#242631" title="https://communities.sas.com/message/242631#242631"&gt;https://communities.sas.com/message/242631#242631&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This also helps all of us to find "correct" answers to questions asked in the past - and it tells us which questions have already been answered so they don't show up in the "unanswered list" anymore. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2015 06:18:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168478#M3284</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2015-01-05T06:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: What exactly is the difference between missover and truncover?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168479#M3285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;As per my knowledge Missover Sets all empty vars to missing when reading a short line. However, it can also skip values.&lt;/P&gt;&lt;P&gt;Where as Truncover Forces the INPUT &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;statement to stop &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;reading when it gets to &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;the end of a short line. &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;This option will not &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;skip information.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;As Truncover does not skip the values so you must go for Truncover.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2015 14:35:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/168479#M3285</guid>
      <dc:creator>RahulVerma</dc:creator>
      <dc:date>2015-01-05T14:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: What exactly is the difference between missover and truncover?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/374027#M11336</link>
      <description>&lt;P&gt;Consider &amp;nbsp;a txt file:&lt;/P&gt;&lt;P&gt;1 2 3&lt;BR /&gt;4 5&lt;BR /&gt;6 7 8&lt;BR /&gt;9 10 11&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data missing1;&lt;BR /&gt;infile "C:\Users\sachin\Desktop\SAS\DataSet\Learning\missing.txt" pad;&lt;BR /&gt;input x y z;&lt;BR /&gt;run;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;after execution &amp;nbsp;you will get 3 records and 3 observations.&lt;/P&gt;&lt;P&gt;after that update and change it ot truncover instead of pad&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data missing1;&lt;BR /&gt;infile "C:\Users\sachin\Desktop\SAS\DataSet\Learning\missing.txt" truncover;&lt;BR /&gt;input x y z;&lt;BR /&gt;run;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;this will run absolutely fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But if you &amp;nbsp;write missover instead of truncover that also works over here but not always.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Consider one more file:&lt;/P&gt;&lt;P&gt;001Josuha Tyson 88&lt;BR /&gt;002Helen Ames 75&lt;BR /&gt;003ShouEn Lu&lt;BR /&gt;004Pam Mann&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data short;&lt;BR /&gt;infile "C:\Users\sachin\Desktop\SAS\DataSet\Learning\short.txt" pad;&lt;BR /&gt;input Subject $ 1-3&lt;BR /&gt;Name $ 4-15&lt;BR /&gt;Quiz 17-20&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;run with pad, truncover and missover. Will work with pad and trunover but not with missover&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My concern is to show &lt;STRONG&gt;truncover&lt;/STRONG&gt; can be used in any situation for missing values. It has effect of the PAD and missover options combined and is a good overall choice for the INFILE option when you are reading "&lt;STRONG&gt;variable length&lt;/STRONG&gt;" record.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps!!!&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2017 17:01:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/What-exactly-is-the-difference-between-missover-and-truncover/m-p/374027#M11336</guid>
      <dc:creator>arpi</dc:creator>
      <dc:date>2017-07-07T17:01:44Z</dc:date>
    </item>
  </channel>
</rss>

