<?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/387669#M92964</link>
    <description>&lt;P&gt;Cynthia,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much for your recommendation to review the link to the article that shows differences between TRUNCOVER and MISSOVER. The examples provided hit home the key differences.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Murali Sastry&lt;/P&gt;</description>
    <pubDate>Mon, 14 Aug 2017 00:47:52 GMT</pubDate>
    <dc:creator>Murali11</dc:creator>
    <dc:date>2017-08-14T00:47:52Z</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/31888#M6121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;I am new to SAS. I am not able to find any difference between Missover and Truncover.&lt;/P&gt;&lt;P&gt;I have used following example to figure out the difference, but could not found any difference. &lt;/P&gt;&lt;P&gt;DATA test;&lt;/P&gt;&lt;P&gt;INFILE datalines missover;&lt;/P&gt;&lt;P&gt;input lname $ fname $ job $ jobn $;&lt;/P&gt;&lt;P&gt;DATALINES;&lt;/P&gt;&lt;P&gt;LANGKAMM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SARAH&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; E0045 Mechanic&lt;/P&gt;&lt;P&gt;TORRES&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; JAN&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; E0029 Pilot&lt;/P&gt;&lt;P&gt;SMITH&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MICHAEL&amp;nbsp;&amp;nbsp; E0065&lt;/P&gt;&lt;P&gt;LEISTNER&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; COLIN&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; E0116 Mechanic&lt;/P&gt;&lt;P&gt;TOMAS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HARALD&lt;/P&gt;&lt;P&gt;WADE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; KIRSTEN&amp;nbsp;&amp;nbsp; E0126 Pilot&lt;/P&gt;&lt;P&gt;WAUGH&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TIM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; E0204 Pilot&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;May be, I have selected wrong example to find the difference. Please help me out to find the difference between the two.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jul 2011 09:19:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/31888#M6121</guid>
      <dc:creator>john83</dc:creator>
      <dc:date>2011-07-15T09:19:21Z</dc:date>
    </item>
    <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/31889#M6122</link>
      <description>&lt;P&gt;Although it is subtle, the difference is there:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use notepad to save the following lines as a text file labeled emplist.txt:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;LANGKAMM SARAH E0045 Mechanic
TORRES JAN E0029 Pilot
SMITH MICHAEL E0065
LEISTNER COLIN E0116 Mechanic
TOMAS HARALD
WADE KIRSTEN E0126 Pilot
WAUGH TIM E0204 Pilot
&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;then run the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA test1;
&amp;nbsp; INFILE "/folders/myfolders/emplist.txt" missover;
&amp;nbsp; INPUT lastn $1-21 Firstn $ 22-31
&amp;nbsp;&amp;nbsp; Empid $32-36 Jobcode $37-45;
RUN;

DATA test2;
&amp;nbsp; INFILE "/folders/myfolders/emplist.txt" truncover;
&amp;nbsp; INPUT lastn $1-21 Firstn $ 22-31
&amp;nbsp;&amp;nbsp; Empid $32-36 Jobcode $37-45;
RUN;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can find an explanation in the paper at:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www2.sas.com/proceedings/sugi26/p009-26.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/sugi26/p009-26.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HTH,&lt;/P&gt;
&lt;P&gt;Art&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Editor's Note:&lt;/EM&gt; See &lt;A href="http://support.sas.com/documentation/cdl/en/basess/68381/HTML/default/viewer.htm#n1qwzamyuzfaaen1nu2t702adpi7.htm" target="_self"&gt;also this topic in SAS documentation&lt;/A&gt; about MISSOVER, TRUNCOVER, STOPOVER and FLOWOVER.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And this explanation from&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;:&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;The difference is what it does when there are not enough characters for the input that you requested.&lt;BR /&gt;An easy test is to read in a text file using this input statement. &amp;nbsp; &amp;nbsp;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;input line $80. ; &amp;nbsp;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; With &lt;STRONG&gt;missover&lt;/STRONG&gt; you will get a missing value if the line does not have at least 80 characters (counting trailing spaces). With &lt;STRONG&gt;truncover&lt;/STRONG&gt; you get the first 80 characters of the line, even for short lines. &amp;nbsp; Your example works the same with MISSOVER and FLOWOVER because you did not specify a specific number of characters to read in your INPUT statement.&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2017 16:28:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/31889#M6122</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-02-08T16:28:02Z</dc:date>
    </item>
    <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/31890#M6123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; I've always thought this documentation topic was very good:&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/basess/58133/HTML/default/viewer.htm#a002645812.htm"&gt;http://support.sas.com/documentation/cdl/en/basess/58133/HTML/default/viewer.htm#a002645812.htm&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp; It is hard to understand MISSOVER and TRUNCOVER without understanding the default behavior FLOWOVER and this topic also discusses STOPOVER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jul 2011 12:56:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/31890#M6123</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2011-07-15T12:56:49Z</dc:date>
    </item>
    <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/31891#M6124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The difference is what it does when there are not enough characters for the input that you requested. &lt;/P&gt;&lt;P&gt;An easy test is to read in a text file using this input statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input line $80. ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With missover you will get a missing value if the line does not have at least 80 characters (counting trailing spaces).&lt;/P&gt;&lt;P&gt;With truncover you get the first 80 characters of the line, even for short lines. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your example works the same with MISSOVER and FLOWOVER because you did not sepecify a specific number of characters to read in your INPUT statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jul 2011 17:10:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/31891#M6124</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2011-07-15T17:10:44Z</dc:date>
    </item>
    <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/31892#M6125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just as Art.T said ,the most difference is for column input. And Art.T have a good example.&lt;/P&gt;&lt;P&gt;missover is old product, and truncover is new product, So recommend you to use truncover.&lt;/P&gt;&lt;P&gt;As far as I know pad+missover = truncover&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jul 2011 06:14:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/31892#M6125</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2011-07-18T06:14:30Z</dc:date>
    </item>
    <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/31893#M6126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks all!! i always wondered how to see the difference.I completely understand now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jul 2011 10:55:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/31893#M6126</guid>
      <dc:creator>manojinpec</dc:creator>
      <dc:date>2011-07-18T10:55:24Z</dc:date>
    </item>
    <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/31894#M6127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank all for your valuable insights and letting me understand the difference between Missover and Truncover.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2011 07:49:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/31894#M6127</guid>
      <dc:creator>john83</dc:creator>
      <dc:date>2011-07-22T07:49:18Z</dc:date>
    </item>
    <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/31895#M6128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ... this is a paper that does a very good job explaining various options such as MISSOVER, TRUNCOVER, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MISSOVER, TRUNCOVER, and PAD, OH MY!! &lt;/P&gt;&lt;P&gt;or Making Sense of the INFILE and INPUT Statements. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.nesug.org/proceedings/nesug01/at/at1sa1.pdf"&gt;http://www.nesug.org/proceedings/nesug01/at/at1sa1.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2011 21:41:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/31895#M6128</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2011-07-22T21:41:53Z</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/31896#M6129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sir&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2015 12:47:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/31896#M6129</guid>
      <dc:creator>ChandanaSree</dc:creator>
      <dc:date>2015-06-29T12:47:37Z</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/387669#M92964</link>
      <description>&lt;P&gt;Cynthia,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much for your recommendation to review the link to the article that shows differences between TRUNCOVER and MISSOVER. The examples provided hit home the key differences.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Murali Sastry&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2017 00:47:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/387669#M92964</guid>
      <dc:creator>Murali11</dc:creator>
      <dc:date>2017-08-14T00:47:52Z</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/397026#M95929</link>
      <description>&lt;P&gt;In case missing values in between observation then what should we do? actualy missover is reading only last column missing values.&lt;/P&gt;&lt;P&gt;Can you help me out????&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2017 08:04:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/397026#M95929</guid>
      <dc:creator>Purnendu</dc:creator>
      <dc:date>2017-09-19T08:04:12Z</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/511768#M137742</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used your code which have the positions specified , still I am getting the same result.&lt;/P&gt;&lt;P&gt;I understand the concept of missover and truncover but on practically doing I am not gettng any difference in output.&lt;/P&gt;&lt;P&gt;Both Missover and Truncover are behaving as Truncover.&lt;/P&gt;&lt;P&gt;Honestly, I tried a lot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please provide an example&amp;nbsp; showing difference in output between these two-missover and truncover.&lt;/P&gt;&lt;P&gt;Will be glad !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Nirupama&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 18:13:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/511768#M137742</guid>
      <dc:creator>nirupama1</dc:creator>
      <dc:date>2018-11-09T18:13:03Z</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/511770#M137743</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/227032"&gt;@nirupama1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used your code which have the positions specified , still I am getting the same result.&lt;/P&gt;
&lt;P&gt;I understand the concept of missover and truncover but on practically doing I am not gettng any difference in output.&lt;/P&gt;
&lt;P&gt;Both Missover and Truncover are behaving as Truncover.&lt;/P&gt;
&lt;P&gt;Honestly, I tried a lot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please provide an example&amp;nbsp; showing difference in output between these two-missover and truncover.&lt;/P&gt;
&lt;P&gt;Will be glad !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Nirupama&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Make sure to test using actual files and not in-line data (DATALINES or CARDS statement). SAS will pad in-line data with spaces to a length that is a multiple of 80 characters.&lt;/P&gt;
&lt;P&gt;If you still have questions then post the code you tried as a new question.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 18:17:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/511770#M137743</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-11-09T18:17: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/511771#M137744</link>
      <description>&lt;P&gt;Yes, I was using cards.Thank you! it is really helpful. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 18:20:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover/m-p/511771#M137744</guid>
      <dc:creator>nirupama1</dc:creator>
      <dc:date>2018-11-09T18:20:42Z</dc:date>
    </item>
  </channel>
</rss>

