<?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: Change column width in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131150#M26738</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My advice is this: define the layout (I usually use the attrib statement) that you want in a separate file which you can then include before the set statement e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data ds2;&lt;/P&gt;&lt;P&gt;%include programs(layout_ds2);&lt;/P&gt;&lt;P&gt; set ds1;&lt;/P&gt;&lt;P&gt; ...&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data ds3;&lt;/P&gt;&lt;P&gt;%include programs(layout_ds3);&lt;/P&gt;&lt;P&gt; set ds2 (rename=(dsvar=tmp_dsvar));&lt;/P&gt;&lt;P&gt; ...&lt;/P&gt;&lt;P&gt; dsvar = tmp_dsvar;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does that make sense? You can control drops and keeps in this way too.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Nov 2012 15:53:26 GMT</pubDate>
    <dc:creator>TimArm</dc:creator>
    <dc:date>2012-11-21T15:53:26Z</dc:date>
    <item>
      <title>Change column width</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131143#M26731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have a data step where I am re-writing the value names in certain columns. I have one column that stored numbers in it (1-5) in it that I changed from numbers to alpha values. However, when I run the data step, the new alpha values are not appearing, only a period. Is there a way to change this from an apparent numeric column to an alpha column?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The second issue is that I am changing the values of column that has alpha characters in it which are 3 char long. I am changing these to longer than 3 characters and the new value names are truncating at 3 characters. Is there a way to increase the length of a column?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, this has nothing to do with the above, but is there a way to turn off the email notifications for this forum? I am getting notified for all activity and not just my own--none of the config changes I have done change this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2012 19:00:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131143#M26731</guid>
      <dc:creator>Paul_NYS</dc:creator>
      <dc:date>2012-11-20T19:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: Change column width</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131144#M26732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Paul,&amp;nbsp; You can't change a variable from character to numeric.&amp;nbsp; I think you are trying to do something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input x;&lt;/P&gt;&lt;P&gt;&amp;nbsp; cards;&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;3&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;data want (drop=_:);&lt;/P&gt;&lt;P&gt;&amp;nbsp; set have (rename=(x=_x));&lt;/P&gt;&lt;P&gt;&amp;nbsp; x=put(_x,1.);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2012 19:40:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131144#M26732</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-20T19:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: Change column width</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131145#M26733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, here is some code that addresses both of your questions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;&amp;nbsp; length y $3;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input x y $;&lt;/P&gt;&lt;P&gt;&amp;nbsp; cards;&lt;/P&gt;&lt;P&gt;1 aaa&lt;/P&gt;&lt;P&gt;2 bbb&lt;/P&gt;&lt;P&gt;3 ccc&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want (drop=_:);&lt;/P&gt;&lt;P&gt;&amp;nbsp; length y $4;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set have (rename=(x=_x));&lt;/P&gt;&lt;P&gt;&amp;nbsp; x=put(_x,1.);&lt;/P&gt;&lt;P&gt;&amp;nbsp; if _n_ eq 2 then y='bbbb';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As for your third question, click on your name at the top right corner and adjust your settings.&amp;nbsp; You can turn off some and/or all of the email notifications.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2012 19:44:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131145#M26733</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-20T19:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Change column width</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131146#M26734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I use the length statement just on the one variable I want to change the length for (exit), it puts that variable first in the resulting data set--which is not the correct order. When I use the length statement on all variables to order them also, the DistributiveNumber and exitMonthTotal variables are blank. Any way to just change the length for the one variable I need to do this for and leave the variable order intact?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data s1AgeClean2 (rename=COUNT=DistributiveNumber);&lt;/P&gt;&lt;P&gt;length cnty_name $25 startyear 3 exit $ 17 agecat4 3 CohortYearTotal 5 exitMonthTotal 5 DistributiveNumber 5 DistributivePercent 5 CumulativeNumber 5 CumulativePercent 5;&lt;/P&gt;&lt;P&gt;set s1AgeClean;&lt;/P&gt;&lt;P&gt;DistributivePercent=COUNT/CohortYearTotalAge;&lt;/P&gt;&lt;P&gt;CumulativePercent=CumulativeNumber/CohortYearTotalAge;&lt;/P&gt;&lt;P&gt;if exitMonthCategory ne 72;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if exit="XCA" then exit="Adoption";&lt;/P&gt;&lt;P&gt;if exit="XRF" then exit="Reun/Cust/Guard";&lt;/P&gt;&lt;P&gt;if exit="XRM" then exit="Aged Out";&lt;/P&gt;&lt;P&gt;if exit="XOT" then exit="Other Exit";&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Nov 2012 15:06:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131146#M26734</guid>
      <dc:creator>Paul_NYS</dc:creator>
      <dc:date>2012-11-21T15:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: Change column width</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131147#M26735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One way to do it is to create a new variable and drop the old one and move the length statement to after the set statement.&amp;nbsp; e.g.:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;data s1AgeClean2 (drop=_: rename=COUNT=DistributiveNumber);&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-family: inherit; font-style: inherit;"&gt;&amp;nbsp; set s1AgeClean (rename=(exit=_exit));&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: inherit; font-style: inherit;"&gt;&amp;nbsp; length exit $17;&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; DistributivePercent=COUNT/CohortYearTotalAge;&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; CumulativePercent=CumulativeNumber/CohortYearTotalAge;&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; if exitMonthCategory ne 72;&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; exit=_exit;&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; if exit="XCA" then exit="Adoption";&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; else if exit="XRF" then exit="Reun/Cust/Guard";&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; else if exit="XRM" then exit="Aged Out";&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; else if exit="XOT" then exit="Other Exit";&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Nov 2012 15:19:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131147#M26735</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-21T15:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: Change column width</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131148#M26736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, you will need to use the approach you have and supply the length for all variables in order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One problem you have with this code is that the LENGTH statement should not specify a length for DistributiveNumber.&amp;nbsp; From the RENAME option you have, it appears that the actual variable name is COUNT.&amp;nbsp; Only when outputting to the final data set does the name change.&amp;nbsp; Assigning a LENGTH to the wrong variable creates a conflict for SAS:&amp;nbsp; which variable should go into the output data set and be named DistributiveNumber?&amp;nbsp; The one that originally had that name (in the LENGTH statement), or COUNT?&amp;nbsp; It's very likely that the solution would be to change the LENGTH statement to define COUNT instead of DistributiveNumber. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try that much, and see if it clears up all the problems, or only half.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Nov 2012 15:23:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131148#M26736</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2012-11-21T15:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: Change column width</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131149#M26737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Paul,&amp;nbsp; My last suggestion would have moved the location of exit to the end of the file.&amp;nbsp; Here is an alternative approach:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data test;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set sashelp.class;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql noprint;&lt;/P&gt;&lt;P&gt;&amp;nbsp; select name into :retains separated by " "&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from dictionary.columns&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where libname="WORK" and&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; memname="TEST"&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&amp;nbsp; length sex $6;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set test;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if sex="M" then sex="MALE";&lt;/P&gt;&lt;P&gt;&amp;nbsp; else sex="FEMALE";&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&amp;nbsp; retain &amp;amp;retains.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set want;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*********Corrected to add the "separated by" clause on the into statement **************/&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Nov 2012 15:35:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131149#M26737</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-21T15:35:01Z</dc:date>
    </item>
    <item>
      <title>Re: Change column width</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131150#M26738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My advice is this: define the layout (I usually use the attrib statement) that you want in a separate file which you can then include before the set statement e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data ds2;&lt;/P&gt;&lt;P&gt;%include programs(layout_ds2);&lt;/P&gt;&lt;P&gt; set ds1;&lt;/P&gt;&lt;P&gt; ...&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data ds3;&lt;/P&gt;&lt;P&gt;%include programs(layout_ds3);&lt;/P&gt;&lt;P&gt; set ds2 (rename=(dsvar=tmp_dsvar));&lt;/P&gt;&lt;P&gt; ...&lt;/P&gt;&lt;P&gt; dsvar = tmp_dsvar;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does that make sense? You can control drops and keeps in this way too.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Nov 2012 15:53:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131150#M26738</guid>
      <dc:creator>TimArm</dc:creator>
      <dc:date>2012-11-21T15:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Change column width</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131151#M26739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Beside using an 'input' statement, is there another way to define a variable type?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Nov 2012 18:27:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131151#M26739</guid>
      <dc:creator>Paul_NYS</dc:creator>
      <dc:date>2012-11-21T18:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: Change column width</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131152#M26740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Paul: you don't need an input statement to define a variable type, but you will need it (or a similar operation) in order to populate it.&amp;nbsp; Did you try the method I suggested, namely: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;data test;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; set sashelp.class;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;proc sql noprint;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; select name into :retains separated by " "&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from dictionary.columns&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where libname="WORK" and&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; memname="TEST"&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;data want;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; length sex $6;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; set test;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; if sex="M" then sex="MALE";&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; else sex="FEMALE";&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;data want;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; retain &amp;amp;retains.;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; set want;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Nov 2012 18:45:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131152#M26740</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-21T18:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: Change column width</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131153#M26741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was not using the COUNT in the length statement--that was the problem. Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And to variable type, all I did was to create a new alpha variable with the same length statement, populate it with the existing values, then drop the old variable. That worked fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Nov 2012 19:28:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Change-column-width/m-p/131153#M26741</guid>
      <dc:creator>Paul_NYS</dc:creator>
      <dc:date>2012-11-21T19:28:38Z</dc:date>
    </item>
  </channel>
</rss>

