<?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: Length statement and truncover option in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204067#M50857</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your code is missing reading in the last two variables which is possibly causing some of the issues.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should also use the DSD option instead of DLM=',' as well as the truncover option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;data work.sales2;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; length &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Employee_ID $8.&lt;/STRONG&gt; First_Name $12.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; Last_Name $18. Gender $.1 &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp; &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Salary 8.&lt;/STRONG&gt; Job_Title $25. Date1 date9. date2 mmddyyyy10.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; Country $2.;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; infile "&amp;amp;path/sales.csv" DSD Truncover;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; input Employee_ID First_Name&amp;nbsp; Last_Name &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; Gender Salary Job_Title&amp;nbsp; Country date1 date2; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Mar 2015 02:30:46 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2015-03-18T02:30:46Z</dc:date>
    <item>
      <title>Length statement and truncover option</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204060#M50850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can length statements be used instead of truncover option in raw data sets&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 20:54:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204060#M50850</guid>
      <dc:creator>NoorulIyn</dc:creator>
      <dc:date>2015-03-17T20:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: Length statement and truncover option</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204061#M50851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are oranges better than apples?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 21:27:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204061#M50851</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2015-03-17T21:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: Length statement and truncover option</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204062#M50852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am new into SAS and can someone explain this both.Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 21:34:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204062#M50852</guid>
      <dc:creator>NoorulIyn</dc:creator>
      <dc:date>2015-03-17T21:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: Length statement and truncover option</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204063#M50853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;They are not really even related.&lt;/P&gt;&lt;P&gt;The TRUNCOVER (vs FLOWOVER) option sets how SAS behaves when you read past the end of the line.&lt;/P&gt;&lt;P&gt;The LENGTH option lets you tell SAS what variable to populate with the length of the line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could conceivably generate some customized logic using the values of the variables specified by the LENGTH and COLUMN options to control when to move to another line, but 99.9 % of normal data input would not require that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 22:08:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204063#M50853</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2015-03-17T22:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: Length statement and truncover option</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204064#M50854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks !!!&lt;/P&gt;&lt;P&gt;Can you suggest another option for this program used in UE edition to produce sames results without using length statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data work.sales2;&lt;/P&gt;&lt;P&gt;&amp;nbsp; length &lt;STRONG&gt;Employee_ID 8&lt;/STRONG&gt; First_Name $ 12&lt;/P&gt;&lt;P&gt;&amp;nbsp; Last_Name $ 18 Gender $ 1 &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;Salary 8&lt;/STRONG&gt; Job_Title $ 25&lt;/P&gt;&lt;P&gt;&amp;nbsp; Country $ 2;&lt;/P&gt;&lt;P&gt;&amp;nbsp; infile "&amp;amp;path/sales.csv" dlm=',';&lt;/P&gt;&lt;P&gt;&amp;nbsp; input Employee_ID First_Name $ Last_Name $ &lt;/P&gt;&lt;P&gt;&amp;nbsp; Gender $ Salary Job_Title $ Country $; &lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;How can I get the same result without truncated job_title....&lt;/P&gt;&lt;P&gt;Thanks In Advance.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 00:57:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204064#M50854</guid>
      <dc:creator>NoorulIyn</dc:creator>
      <dc:date>2015-03-18T00:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: Length statement and truncover option</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204065#M50855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Without seeing what your data looks like its difficult to say why the job title is being truncated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does it have spaces or is it just longer than 25 characters? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 01:09:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204065#M50855</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-03-18T01:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: Length statement and truncover option</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204066#M50856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="text-align: left;"&gt;&lt;SPAN class="c systemtitle" style="text-align: center; color: #112277; font-size: small; font-weight: bold;"&gt;v1 length 20 reading the same line&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE class="table" style="margin-bottom: 1em; border-style: solid; border-width: 1px 0px 0px 1px; border-color: #c1c1c1; margin-left: auto; margin-right: auto; color: #000000; font-family: Arial, 'Albany AMT', Helvetica, Helv; font-size: x-small; text-align: center; background-color: #fafbfe;"&gt;&lt;TBODY&gt;&lt;TR style="border-top-width: 1px; border-top-color: #c1c1c1; border-bottom-color: #c1c1c1;"&gt;&lt;TH class="r rowheader" scope="row" style="text-align: right; padding: 3px 6px; border-color: #b0b7bb; border-style: solid; border-width: 0px 1px 1px 0px; color: #112277; font-weight: bold; background-color: #edf2f9;"&gt;1&lt;/TH&gt;&lt;TD class="r data" style="text-align: right; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;120102&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Tom&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Zhou&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;M&lt;/TD&gt;&lt;TD class="r data" style="text-align: right; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;108255&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Sales Ma&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;AU&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border-top-width: 1px; border-top-color: #c1c1c1; border-bottom-color: #c1c1c1;"&gt;&lt;TH class="r rowheader" scope="row" style="text-align: right; padding: 3px 6px; border-color: #b0b7bb; border-style: solid; border-width: 0px 1px 1px 0px; color: #112277; font-weight: bold; background-color: #edf2f9;"&gt;2&lt;/TH&gt;&lt;TD class="r data" style="text-align: right; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;120103&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Wilson&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Dawes&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;M&lt;/TD&gt;&lt;TD class="r data" style="text-align: right; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;87975&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Sales Ma&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;AU&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border-top-width: 1px; border-top-color: #c1c1c1; border-bottom-color: #c1c1c1;"&gt;&lt;TH class="r rowheader" scope="row" style="text-align: right; padding: 3px 6px; border-color: #b0b7bb; border-style: solid; border-width: 0px 1px 1px 0px; color: #112277; font-weight: bold; background-color: #edf2f9;"&gt;3&lt;/TH&gt;&lt;TD class="r data" style="text-align: right; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;120121&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Irenie&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Elvish&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;F&lt;/TD&gt;&lt;TD class="r data" style="text-align: right; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;26600&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Sales Re&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;AU&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border-top-width: 1px; border-top-color: #c1c1c1; border-bottom-color: #c1c1c1;"&gt;&lt;TH class="r rowheader" scope="row" style="text-align: right; padding: 3px 6px; border-color: #b0b7bb; border-style: solid; border-width: 0px 1px 1px 0px; color: #112277; font-weight: bold; background-color: #edf2f9;"&gt;4&lt;/TH&gt;&lt;TD class="r data" style="text-align: right; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;120122&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Christin&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Ngan&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;F&lt;/TD&gt;&lt;TD class="r data" style="text-align: right; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;27475&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Sales Re&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;AU&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border-top-width: 1px; border-top-color: #c1c1c1; border-bottom-color: #c1c1c1;"&gt;&lt;TH class="r rowheader" scope="row" style="text-align: right; padding: 3px 6px; border-color: #b0b7bb; border-style: solid; border-width: 0px 1px 1px 0px; color: #112277; font-weight: bold; background-color: #edf2f9;"&gt;5&lt;/TH&gt;&lt;TD class="r data" style="text-align: right; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;120123&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Kimiko&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Hotstone&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;F&lt;/TD&gt;&lt;TD class="r data" style="text-align: right; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;26190&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Sales Re&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;AU&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border-top-width: 1px; border-top-color: #c1c1c1; border-bottom-color: #c1c1c1;"&gt;&lt;TH class="r rowheader" scope="row" style="text-align: right; padding: 3px 6px; border-color: #b0b7bb; border-style: solid; border-width: 0px 1px 1px 0px; color: #112277; font-weight: bold; background-color: #edf2f9;"&gt;6&lt;/TH&gt;&lt;TD class="r data" style="text-align: right; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;120124&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Lucian&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Daymond&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;M&lt;/TD&gt;&lt;TD class="r data" style="text-align: right; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;26480&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Sales Re&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;AU&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border-top-width: 1px; border-top-color: #c1c1c1; border-bottom-color: #c1c1c1;"&gt;&lt;TH class="r rowheader" scope="row" style="text-align: right; padding: 3px 6px; border-color: #b0b7bb; border-style: solid; border-width: 0px 1px 1px 0px; color: #112277; font-weight: bold; background-color: #edf2f9;"&gt;7&lt;/TH&gt;&lt;TD class="r data" style="text-align: right; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;120125&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Fong&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Hofmeist&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;M&lt;/TD&gt;&lt;TD class="r data" style="text-align: right; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;32040&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Sales Re&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;AU&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border-top-width: 1px; border-top-color: #c1c1c1; border-bottom-color: #c1c1c1;"&gt;&lt;TH class="r rowheader" scope="row" style="text-align: right; padding: 3px 6px; border-color: #b0b7bb; border-style: solid; border-width: 0px 1px 1px 0px; color: #112277; font-weight: bold; background-color: #edf2f9;"&gt;8&lt;/TH&gt;&lt;TD class="r data" style="text-align: right; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;120126&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Satyakam&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Denny&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;M&lt;/TD&gt;&lt;TD class="r data" style="text-align: right; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;26780&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Sales Re&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;AU&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border-top-width: 1px; border-top-color: #c1c1c1; border-bottom-color: #c1c1c1;"&gt;&lt;TH class="r rowheader" scope="row" style="text-align: right; padding: 3px 6px; border-color: #b0b7bb; border-style: solid; border-width: 0px 1px 1px 0px; color: #112277; font-weight: bold; background-color: #edf2f9;"&gt;9&lt;/TH&gt;&lt;TD class="r data" style="text-align: right; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;120127&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Sharryn&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Clarkson&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;F&lt;/TD&gt;&lt;TD class="r data" style="text-align: right; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;28100&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;Sales Re&lt;/TD&gt;&lt;TD class="data" style="text-align: left; padding: 3px 6px; border-color: #c1c1c1; border-style: solid; border-width: 0px 1px 1px 0px; background-color: #ffffff;"&gt;AU&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;without length option.....&lt;/P&gt;&lt;P&gt;data csv file&lt;/P&gt;&lt;P&gt;120102,Tom,Zhou,M,108255,Sales Manager,AU,11AUG1973,06/01/1993&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;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;120103,Wilson,Dawes,M,87975,Sales Manager,AU,22JAN1953,01/01/1978&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; &lt;/P&gt;&lt;P&gt;120121,Irenie,Elvish,F,26600,Sales Rep. II,AU,02AUG1948,01/01/1978&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; &lt;/P&gt;&lt;P&gt;120122,Christina,Ngan,F,27475,Sales Rep. II,AU,27JUL1958,07/01/1982&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;120123,Kimiko,Hotstone,F,26190,Sales Rep. I,AU,28SEP1968,10/01/1989&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;120124,Lucian,Daymond,M,26480,Sales Rep. I,AU,13MAY1963,03/01/1983&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; &lt;/P&gt;&lt;P&gt;120125,Fong,Hofmeister,M,32040,Sales Rep. IV,AU,06DEC1958,03/01/198&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 01:26:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204066#M50856</guid>
      <dc:creator>NoorulIyn</dc:creator>
      <dc:date>2015-03-18T01:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: Length statement and truncover option</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204067#M50857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your code is missing reading in the last two variables which is possibly causing some of the issues.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should also use the DSD option instead of DLM=',' as well as the truncover option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;data work.sales2;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; length &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Employee_ID $8.&lt;/STRONG&gt; First_Name $12.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; Last_Name $18. Gender $.1 &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp; &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Salary 8.&lt;/STRONG&gt; Job_Title $25. Date1 date9. date2 mmddyyyy10.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; Country $2.;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; infile "&amp;amp;path/sales.csv" DSD Truncover;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; input Employee_ID First_Name&amp;nbsp; Last_Name &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; Gender Salary Job_Title&amp;nbsp; Country date1 date2; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 02:30:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204067#M50857</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-03-18T02:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Length statement and truncover option</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204068#M50858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The LENGTH statement is a method for defining your variables. You can also use the ATTRIB statement.&lt;/P&gt;&lt;P&gt;Once you have defined your variables the INPUT statement is much easier to write.&amp;nbsp; In fact you can even use variable lists as in the example below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The TRUNCOVER option will allow the INPUT statement to handle lines when the last value is empty, or even if there are not enough delimiters on the line.&amp;nbsp; For example see how I changed the next to last line of input data.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Your example data looks like a normal CSV file. So you should use the DSD option.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;data&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; want ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;infile&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; cards &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;dsd&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;truncover&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;length&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Employee_ID &lt;/SPAN&gt;&lt;STRONG style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;8&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; First_Name $ &lt;/SPAN&gt;&lt;STRONG style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;12&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Last_Name $ &lt;/SPAN&gt;&lt;STRONG style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;18&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Gender $ &lt;/SPAN&gt;&lt;STRONG style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;1&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Salary &lt;/SPAN&gt;&lt;STRONG style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;8&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Job_Title $ &lt;/SPAN&gt;&lt;STRONG style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;25&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Country $ &lt;/SPAN&gt;&lt;STRONG style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;2&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date1 &lt;/SPAN&gt;&lt;STRONG style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;8&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date2 &lt;/SPAN&gt;&lt;STRONG style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;8&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;informat&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; date1 &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: teal; background: white;"&gt;date9.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; date2 &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: teal; background: white;"&gt;mmddyy10.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; date1 date2 &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: teal; background: white;"&gt;yymmdd10.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;input&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; Employee_ID -- Date2 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;cards&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;120102,Tom,Zhou,M,108255,Sales Manager,AU,11AUG1973,06/01/1993 &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;120103,Wilson,Dawes,M,87975,Sales Manager,AU,22JAN1953,01/01/1978&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; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;120121,Irenie,Elvish,F,26600,Sales Rep. II,AU,02AUG1948,01/01/1978 &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;120122,Christina,Ngan,F,27475,Sales Rep. II,AU,27JUL1958,07/01/1982 &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;120123,Kimiko,Hotstone,F,26190,Sales Rep. I,AU,28SEP1968,10/01/1989 &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;120124,Lucian,Daymond,M,26480,Sales Rep. I,AU,13MAY1963&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;120125,Fong,Hofmeister,M,32040,Sales Rep. IV,AU,06DEC1958,03/01/1983&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;;;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 04:34:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204068#M50858</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2015-03-18T04:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: Length statement and truncover option</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204069#M50859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I suspect that your question is triggered by confusion between using formatted input and list mode input when writing your INPUT statement rather than the TRUNCOVER option of the INFILE statement. Take a look at this page:&amp;nbsp; &lt;A class="active_link" href="http://support.sas.com/documentation/cdl/en/lrcon/62955/HTML/default/viewer.htm#a003209907.htm" title="http://support.sas.com/documentation/cdl/en/lrcon/62955/HTML/default/viewer.htm#a003209907.htm"&gt;SAS(R) 9.2 Language Reference: Concepts, Second Edition&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;The description of LIST INPUT style could use a little clarification:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The example INPUT statement has an unneeded $.&amp;nbsp; Because the variable has already been defined there is no need to include the $ in the INPUT statement.&lt;/LI&gt;&lt;LI&gt;The statement about blanks not representing a missing value only applies when you are using blank as your delimiter. Also look at the effect of modifiers such as &amp;amp; that are mentioned in the MODIFIED LIST INPUT style section.&lt;/LI&gt;&lt;LI&gt;They do not explain how the defined INFORMAT impacts the type data that can be read.&amp;nbsp; If you have defined an INFORMAT for your variables then you can read them with LIST INPUT style and the informat assigned to the variables in the list will automatically be read.&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 05:00:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204069#M50859</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2015-03-18T05:00:49Z</dc:date>
    </item>
    <item>
      <title>Re: Length statement and truncover option</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204070#M50860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!Now I&amp;nbsp; understood clearly....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 14:53:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Length-statement-and-truncover-option/m-p/204070#M50860</guid>
      <dc:creator>NoorulIyn</dc:creator>
      <dc:date>2015-03-18T14:53:34Z</dc:date>
    </item>
  </channel>
</rss>

