<?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 SAS Truncating on PROC Import in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Truncating-on-PROC-Import/m-p/59707#M16853</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I apologive in advance for the long post but I have exhausted all my resources at work and have not found an answer on google so here it goes.&amp;nbsp; I have a macro called&amp;nbsp; TXT_TABTXT3 that lets me read in files from a start week to an end week.&amp;nbsp; The problem I am having is during the process SAS is cutting off my data.&amp;nbsp; My old work around for this was to just put a 99999999999999999999999 or zzzzzzzzzzzzzzzzzzzzzzzzzzzz at the top of each column to trick SAS into thinking my data was that long.&amp;nbsp; Now I cannot do that for a number of reasons so I need to fix my macro.&amp;nbsp; I want to modify the macro so it doesn't do this and there are too many columns for me to manually list each variable name and specify formats plus I want to be able to use this macro with multiple data sources that have different column headings.&amp;nbsp; I never had training in SAS I just picked up things at work from co workers so I don't know the language like I should.&amp;nbsp; The macro was actually given to me from SAS.&amp;nbsp; Below is the macro and I am hoping there is a few lines of code that I can add to fix this issue.&amp;nbsp; Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;OPTIONS NOLABEL;&lt;/P&gt;&lt;P&gt;%MACRO IMPORTYR (IN_LOC,MN,MX,Y);&lt;/P&gt;&lt;P&gt;%PUT &amp;amp;IN_LOC,&amp;amp;MN,&amp;amp;MX,&amp;amp;Y;&lt;/P&gt;&lt;P&gt;%DO I = &amp;amp;MN %TO &amp;amp;MX;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%IF &amp;amp;I LE 9 %THEN %DO;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%PUT &amp;amp;I "&amp;amp;IN_LOC&amp;amp;Y.0&amp;amp;I..CSV";&lt;/P&gt;&lt;P&gt;PROC IMPORT OUT = X&amp;amp;I &lt;/P&gt;&lt;P&gt;DATAFILE = "&amp;amp;IN_LOC&amp;amp;Y.0&amp;amp;I..CSV" &lt;/P&gt;&lt;P&gt;DBMS = CSV REPLACE;&lt;/P&gt;&lt;P&gt;GETNAMES = YES;&lt;/P&gt;&lt;P&gt;DATAROW = 2; &lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%ELSE %DO;&lt;/P&gt;&lt;P&gt;%PUT &amp;amp;I "&amp;amp;IN_LOC&amp;amp;Y&amp;amp;I..CSV";&lt;/P&gt;&lt;P&gt;PROC IMPORT OUT = X&amp;amp;I &lt;/P&gt;&lt;P&gt;DATAFILE = "&amp;amp;IN_LOC&amp;amp;Y&amp;amp;I..CSV" &lt;/P&gt;&lt;P&gt;DBMS = CSV REPLACE;&lt;/P&gt;&lt;P&gt;GETNAMES = YES;&lt;/P&gt;&lt;P&gt;DATAROW = 2; &lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;%IF &amp;amp;MN = &amp;amp;I %THEN %DO;&lt;/P&gt;&lt;P&gt;DATA TMP&amp;amp;Y;&lt;/P&gt;&lt;P&gt;SET X&amp;amp;I;&lt;/P&gt;&lt;P&gt;IF &amp;amp;I LE 9 THEN FILEID = &amp;amp;Y.0&amp;amp;I;&lt;/P&gt;&lt;P&gt;ELSE FILEID = &amp;amp;Y&amp;amp;I;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;%ELSE %DO;&lt;/P&gt;&lt;P&gt;DATA XYZ;&lt;/P&gt;&lt;P&gt;SET X&amp;amp;I;&lt;/P&gt;&lt;P&gt;IF &amp;amp;I LE 9 THEN FILEID = &amp;amp;Y.0&amp;amp;I;&lt;/P&gt;&lt;P&gt;ELSE FILEID = &amp;amp;Y&amp;amp;I;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC APPEND FORCE&lt;/P&gt;&lt;P&gt;BASE = TMP&amp;amp;Y&lt;/P&gt;&lt;P&gt;DATA = XYZ;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC DELETE DATA = XYZ; RUN;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;PROC DELETE DATA = X&amp;amp;I; RUN;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;%MEND IMPORTYR;&lt;/P&gt;&lt;P&gt;%MACRO TXT_TABTXT3 (IN_LOC,MN,MX,OUT_SAS);&lt;/P&gt;&lt;P&gt;%LET MNWK = %SUBSTR(&amp;amp;MN,5,2);&lt;/P&gt;&lt;P&gt;%LET MXWK = %SUBSTR(&amp;amp;MX,5,2);&lt;/P&gt;&lt;P&gt;%LET MNYR = %SUBSTR(&amp;amp;MN,1,4);&lt;/P&gt;&lt;P&gt;%LET MXYR = %SUBSTR(&amp;amp;MX,1,4);&lt;/P&gt;&lt;P&gt;%DO Y = &amp;amp;MNYR %TO &amp;amp;MXYR;&lt;/P&gt;&lt;P&gt;%IF &amp;amp;Y = 2006 %THEN %LET MAXWKX = 53;&lt;/P&gt;&lt;P&gt;%ELSE %LET MAXWKX = 52;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%IF &amp;amp;MXWK &amp;lt; &amp;amp;MNWK %THEN %DO;&lt;/P&gt;&lt;P&gt;%IF &amp;amp;MXYR NE &amp;amp;Y %THEN %DO;&lt;/P&gt;&lt;P&gt;%LET TMPMXWK = &amp;amp;MAXWKX;&lt;/P&gt;&lt;P&gt;%IF &amp;amp;MNYR = &amp;amp;Y %THEN %LET TMPMNWK = &amp;amp;MNWK;&lt;/P&gt;&lt;P&gt;%ELSE %LET TMPMNWK = 1;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;%ELSE %DO;&lt;/P&gt;&lt;P&gt;%LET TMPMNWK = 1;&lt;/P&gt;&lt;P&gt;%LET TMPMXWK = &amp;amp;MXWK;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;%ELSE %DO;&lt;/P&gt;&lt;P&gt;%IF &amp;amp;Y NE &amp;amp;MNYR %THEN %DO;&lt;/P&gt;&lt;P&gt;%LET TMPMNWK = 1;&lt;/P&gt;&lt;P&gt;%IF &amp;amp;Y NE &amp;amp;MXYR %THEN %LET TMPMXWK = &amp;amp;MAXWKX;&lt;/P&gt;&lt;P&gt;%ELSE %LET TMPMXWK = &amp;amp;MXWK;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;%ELSE %DO;&lt;/P&gt;&lt;P&gt;%LET TMPMNWK = &amp;amp;MNWK;&lt;/P&gt;&lt;P&gt;%IF &amp;amp;Y = &amp;amp;MXYR %THEN %LET TMPMXWK = &amp;amp;MXWK;&lt;/P&gt;&lt;P&gt;%ELSE %LET TMPMXWK = &amp;amp;MAXWKX;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%PUT &amp;amp;Y &amp;amp;TMPMNWK &amp;amp;TMPMXWK;&lt;/P&gt;&lt;P&gt;%IMPORTYR (&amp;amp;IN_LOC,&amp;amp;TMPMNWK,&amp;amp;TMPMXWK,&amp;amp;Y); &lt;/P&gt;&lt;P&gt;%IF &amp;amp;MNYR = &amp;amp;Y %THEN %DO;&lt;/P&gt;&lt;P&gt;DATA &amp;amp;OUT_SAS;&lt;/P&gt;&lt;P&gt;SET TMP&amp;amp;Y;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;%ELSE %DO;&lt;/P&gt;&lt;P&gt;PROC APPEND FORCE&lt;/P&gt;&lt;P&gt;BASE = &amp;amp;OUT_SAS&lt;/P&gt;&lt;P&gt;DATA = TMP&amp;amp;Y;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;PROC DELETE DATA = TMP&amp;amp;Y; RUN;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%MEND TXT_TABTXT3;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Sep 2011 15:12:45 GMT</pubDate>
    <dc:creator>1800bigk</dc:creator>
    <dc:date>2011-09-01T15:12:45Z</dc:date>
    <item>
      <title>SAS Truncating on PROC Import</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Truncating-on-PROC-Import/m-p/59707#M16853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I apologive in advance for the long post but I have exhausted all my resources at work and have not found an answer on google so here it goes.&amp;nbsp; I have a macro called&amp;nbsp; TXT_TABTXT3 that lets me read in files from a start week to an end week.&amp;nbsp; The problem I am having is during the process SAS is cutting off my data.&amp;nbsp; My old work around for this was to just put a 99999999999999999999999 or zzzzzzzzzzzzzzzzzzzzzzzzzzzz at the top of each column to trick SAS into thinking my data was that long.&amp;nbsp; Now I cannot do that for a number of reasons so I need to fix my macro.&amp;nbsp; I want to modify the macro so it doesn't do this and there are too many columns for me to manually list each variable name and specify formats plus I want to be able to use this macro with multiple data sources that have different column headings.&amp;nbsp; I never had training in SAS I just picked up things at work from co workers so I don't know the language like I should.&amp;nbsp; The macro was actually given to me from SAS.&amp;nbsp; Below is the macro and I am hoping there is a few lines of code that I can add to fix this issue.&amp;nbsp; Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;OPTIONS NOLABEL;&lt;/P&gt;&lt;P&gt;%MACRO IMPORTYR (IN_LOC,MN,MX,Y);&lt;/P&gt;&lt;P&gt;%PUT &amp;amp;IN_LOC,&amp;amp;MN,&amp;amp;MX,&amp;amp;Y;&lt;/P&gt;&lt;P&gt;%DO I = &amp;amp;MN %TO &amp;amp;MX;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%IF &amp;amp;I LE 9 %THEN %DO;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%PUT &amp;amp;I "&amp;amp;IN_LOC&amp;amp;Y.0&amp;amp;I..CSV";&lt;/P&gt;&lt;P&gt;PROC IMPORT OUT = X&amp;amp;I &lt;/P&gt;&lt;P&gt;DATAFILE = "&amp;amp;IN_LOC&amp;amp;Y.0&amp;amp;I..CSV" &lt;/P&gt;&lt;P&gt;DBMS = CSV REPLACE;&lt;/P&gt;&lt;P&gt;GETNAMES = YES;&lt;/P&gt;&lt;P&gt;DATAROW = 2; &lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%ELSE %DO;&lt;/P&gt;&lt;P&gt;%PUT &amp;amp;I "&amp;amp;IN_LOC&amp;amp;Y&amp;amp;I..CSV";&lt;/P&gt;&lt;P&gt;PROC IMPORT OUT = X&amp;amp;I &lt;/P&gt;&lt;P&gt;DATAFILE = "&amp;amp;IN_LOC&amp;amp;Y&amp;amp;I..CSV" &lt;/P&gt;&lt;P&gt;DBMS = CSV REPLACE;&lt;/P&gt;&lt;P&gt;GETNAMES = YES;&lt;/P&gt;&lt;P&gt;DATAROW = 2; &lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;%IF &amp;amp;MN = &amp;amp;I %THEN %DO;&lt;/P&gt;&lt;P&gt;DATA TMP&amp;amp;Y;&lt;/P&gt;&lt;P&gt;SET X&amp;amp;I;&lt;/P&gt;&lt;P&gt;IF &amp;amp;I LE 9 THEN FILEID = &amp;amp;Y.0&amp;amp;I;&lt;/P&gt;&lt;P&gt;ELSE FILEID = &amp;amp;Y&amp;amp;I;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;%ELSE %DO;&lt;/P&gt;&lt;P&gt;DATA XYZ;&lt;/P&gt;&lt;P&gt;SET X&amp;amp;I;&lt;/P&gt;&lt;P&gt;IF &amp;amp;I LE 9 THEN FILEID = &amp;amp;Y.0&amp;amp;I;&lt;/P&gt;&lt;P&gt;ELSE FILEID = &amp;amp;Y&amp;amp;I;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC APPEND FORCE&lt;/P&gt;&lt;P&gt;BASE = TMP&amp;amp;Y&lt;/P&gt;&lt;P&gt;DATA = XYZ;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC DELETE DATA = XYZ; RUN;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;PROC DELETE DATA = X&amp;amp;I; RUN;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;%MEND IMPORTYR;&lt;/P&gt;&lt;P&gt;%MACRO TXT_TABTXT3 (IN_LOC,MN,MX,OUT_SAS);&lt;/P&gt;&lt;P&gt;%LET MNWK = %SUBSTR(&amp;amp;MN,5,2);&lt;/P&gt;&lt;P&gt;%LET MXWK = %SUBSTR(&amp;amp;MX,5,2);&lt;/P&gt;&lt;P&gt;%LET MNYR = %SUBSTR(&amp;amp;MN,1,4);&lt;/P&gt;&lt;P&gt;%LET MXYR = %SUBSTR(&amp;amp;MX,1,4);&lt;/P&gt;&lt;P&gt;%DO Y = &amp;amp;MNYR %TO &amp;amp;MXYR;&lt;/P&gt;&lt;P&gt;%IF &amp;amp;Y = 2006 %THEN %LET MAXWKX = 53;&lt;/P&gt;&lt;P&gt;%ELSE %LET MAXWKX = 52;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%IF &amp;amp;MXWK &amp;lt; &amp;amp;MNWK %THEN %DO;&lt;/P&gt;&lt;P&gt;%IF &amp;amp;MXYR NE &amp;amp;Y %THEN %DO;&lt;/P&gt;&lt;P&gt;%LET TMPMXWK = &amp;amp;MAXWKX;&lt;/P&gt;&lt;P&gt;%IF &amp;amp;MNYR = &amp;amp;Y %THEN %LET TMPMNWK = &amp;amp;MNWK;&lt;/P&gt;&lt;P&gt;%ELSE %LET TMPMNWK = 1;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;%ELSE %DO;&lt;/P&gt;&lt;P&gt;%LET TMPMNWK = 1;&lt;/P&gt;&lt;P&gt;%LET TMPMXWK = &amp;amp;MXWK;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;%ELSE %DO;&lt;/P&gt;&lt;P&gt;%IF &amp;amp;Y NE &amp;amp;MNYR %THEN %DO;&lt;/P&gt;&lt;P&gt;%LET TMPMNWK = 1;&lt;/P&gt;&lt;P&gt;%IF &amp;amp;Y NE &amp;amp;MXYR %THEN %LET TMPMXWK = &amp;amp;MAXWKX;&lt;/P&gt;&lt;P&gt;%ELSE %LET TMPMXWK = &amp;amp;MXWK;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;%ELSE %DO;&lt;/P&gt;&lt;P&gt;%LET TMPMNWK = &amp;amp;MNWK;&lt;/P&gt;&lt;P&gt;%IF &amp;amp;Y = &amp;amp;MXYR %THEN %LET TMPMXWK = &amp;amp;MXWK;&lt;/P&gt;&lt;P&gt;%ELSE %LET TMPMXWK = &amp;amp;MAXWKX;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%PUT &amp;amp;Y &amp;amp;TMPMNWK &amp;amp;TMPMXWK;&lt;/P&gt;&lt;P&gt;%IMPORTYR (&amp;amp;IN_LOC,&amp;amp;TMPMNWK,&amp;amp;TMPMXWK,&amp;amp;Y); &lt;/P&gt;&lt;P&gt;%IF &amp;amp;MNYR = &amp;amp;Y %THEN %DO;&lt;/P&gt;&lt;P&gt;DATA &amp;amp;OUT_SAS;&lt;/P&gt;&lt;P&gt;SET TMP&amp;amp;Y;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;%ELSE %DO;&lt;/P&gt;&lt;P&gt;PROC APPEND FORCE&lt;/P&gt;&lt;P&gt;BASE = &amp;amp;OUT_SAS&lt;/P&gt;&lt;P&gt;DATA = TMP&amp;amp;Y;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;PROC DELETE DATA = TMP&amp;amp;Y; RUN;&lt;/P&gt;&lt;P&gt;%END;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%MEND TXT_TABTXT3;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Sep 2011 15:12:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Truncating-on-PROC-Import/m-p/59707#M16853</guid>
      <dc:creator>1800bigk</dc:creator>
      <dc:date>2011-09-01T15:12:45Z</dc:date>
    </item>
    <item>
      <title>SAS Truncating on PROC Import</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Truncating-on-PROC-Import/m-p/59708#M16854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure where your problem is originating.&amp;nbsp; If it is during the proc import calls you might be able to correct it by adding one line to each of your proc imports, namely: GUESSINGROWS=32767;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Sep 2011 15:20:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Truncating-on-PROC-Import/m-p/59708#M16854</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-09-01T15:20:21Z</dc:date>
    </item>
    <item>
      <title>SAS Truncating on PROC Import</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Truncating-on-PROC-Import/m-p/59709#M16855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I looked at the log to see what SAS is doing and the problem is during the import.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt; font-family: Courier New;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt; channel &lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-size: 10pt; font-family: Courier New;"&gt;$4.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt; font-family: Courier New;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt; product &lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-size: 10pt; font-family: Courier New;"&gt;$3.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt; font-family: Courier New;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt; sub_product &lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-size: 10pt; font-family: Courier New;"&gt;$7.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-size: 10pt; font-family: Courier New;"&gt;﻿&lt;/SPAN&gt;&lt;/P&gt;&lt;SPAN style=": ; font-size: 2; font-family: 'Courier New';"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;﻿SAS is saying my channel data is only 4 digits long but really there are other channels in my data that have more than 4 digits it just happens the first instance of channel is only 4 digits so it just cuts everything off after that.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt; &lt;P&gt;&lt;/P&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Sep 2011 15:27:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Truncating-on-PROC-Import/m-p/59709#M16855</guid>
      <dc:creator>1800bigk</dc:creator>
      <dc:date>2011-09-01T15:27:06Z</dc:date>
    </item>
    <item>
      <title>SAS Truncating on PROC Import</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Truncating-on-PROC-Import/m-p/59710#M16856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then I would definitely recommend including the guessingrows statements.&amp;nbsp; If you don't include the statement, then proc import will only look at the first 20 records to determine formats and informats.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Sep 2011 15:35:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Truncating-on-PROC-Import/m-p/59710#M16856</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-09-01T15:35:13Z</dc:date>
    </item>
    <item>
      <title>SAS Truncating on PROC Import</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Truncating-on-PROC-Import/m-p/59711#M16857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; You my friend are a genius, that did it.&amp;nbsp; Thanks so much.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Sep 2011 15:54:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Truncating-on-PROC-Import/m-p/59711#M16857</guid>
      <dc:creator>1800bigk</dc:creator>
      <dc:date>2011-09-01T15:54:44Z</dc:date>
    </item>
  </channel>
</rss>

