<?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: HTML output - column length in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/HTML-output-column-length/m-p/51415#M6531</link>
    <description>Hi:&lt;BR /&gt;
  I'm not sure what you mean by column length or width. When I run the program below, my column widths show the full variable values.&lt;BR /&gt;
                     &lt;BR /&gt;
  It is possible that you are experiencing some other issue with PROC FREQ that is unrelated to ODS:&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/2/957.html" target="_blank"&gt;http://support.sas.com/kb/2/957.html&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/15/430.html" target="_blank"&gt;http://support.sas.com/kb/15/430.html&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/16/221.html" target="_blank"&gt;http://support.sas.com/kb/16/221.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
  If none of the above issues describes your scenario, then your best bet is to contact Tech Support for more help.&lt;BR /&gt;
         &lt;BR /&gt;
cynthia&lt;BR /&gt;
                           &lt;BR /&gt;
[pre]&lt;BR /&gt;
data class;&lt;BR /&gt;
  set sashelp.class;&lt;BR /&gt;
  if age lt 15 then grp = 'supercalifragilisticexpealidocious10';&lt;BR /&gt;
  else grp = 'abcdefghijklmnopqrstuvwxyz0123456789';&lt;BR /&gt;
run;&lt;BR /&gt;
                              &lt;BR /&gt;
ods html file='c:\temp\longvar.html' style=sasweb;&lt;BR /&gt;
proc freq data=class;&lt;BR /&gt;
  tables grp;&lt;BR /&gt;
  tables grp * age;&lt;BR /&gt;
  title 'long variable values';&lt;BR /&gt;
run;&lt;BR /&gt;
ods html close;&lt;BR /&gt;
[/pre]</description>
    <pubDate>Fri, 03 Oct 2008 02:47:50 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2008-10-03T02:47:50Z</dc:date>
    <item>
      <title>HTML output - column length</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/HTML-output-column-length/m-p/51413#M6529</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
I did a proc freq and had HTML output selected as an option.  My columns are narrow and some text is getting cut off. How do I widen the columns?  &lt;BR /&gt;
&lt;BR /&gt;
Thank you.</description>
      <pubDate>Thu, 02 Oct 2008 22:58:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/HTML-output-column-length/m-p/51413#M6529</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-10-02T22:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: HTML output - column length</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/HTML-output-column-length/m-p/51414#M6530</link>
      <description>Please share your SAS code (ODS and PROC FREQ related statements, at a minimum).&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Fri, 03 Oct 2008 00:26:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/HTML-output-column-length/m-p/51414#M6530</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2008-10-03T00:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: HTML output - column length</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/HTML-output-column-length/m-p/51415#M6531</link>
      <description>Hi:&lt;BR /&gt;
  I'm not sure what you mean by column length or width. When I run the program below, my column widths show the full variable values.&lt;BR /&gt;
                     &lt;BR /&gt;
  It is possible that you are experiencing some other issue with PROC FREQ that is unrelated to ODS:&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/2/957.html" target="_blank"&gt;http://support.sas.com/kb/2/957.html&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/15/430.html" target="_blank"&gt;http://support.sas.com/kb/15/430.html&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/16/221.html" target="_blank"&gt;http://support.sas.com/kb/16/221.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
  If none of the above issues describes your scenario, then your best bet is to contact Tech Support for more help.&lt;BR /&gt;
         &lt;BR /&gt;
cynthia&lt;BR /&gt;
                           &lt;BR /&gt;
[pre]&lt;BR /&gt;
data class;&lt;BR /&gt;
  set sashelp.class;&lt;BR /&gt;
  if age lt 15 then grp = 'supercalifragilisticexpealidocious10';&lt;BR /&gt;
  else grp = 'abcdefghijklmnopqrstuvwxyz0123456789';&lt;BR /&gt;
run;&lt;BR /&gt;
                              &lt;BR /&gt;
ods html file='c:\temp\longvar.html' style=sasweb;&lt;BR /&gt;
proc freq data=class;&lt;BR /&gt;
  tables grp;&lt;BR /&gt;
  tables grp * age;&lt;BR /&gt;
  title 'long variable values';&lt;BR /&gt;
run;&lt;BR /&gt;
ods html close;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Fri, 03 Oct 2008 02:47:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/HTML-output-column-length/m-p/51415#M6531</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-10-03T02:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: HTML output - column length</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/HTML-output-column-length/m-p/51416#M6532</link>
      <description>Thanks very much!

Message was edited by: jcis</description>
      <pubDate>Fri, 03 Oct 2008 14:52:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/HTML-output-column-length/m-p/51416#M6532</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-10-03T14:52:11Z</dc:date>
    </item>
  </channel>
</rss>

