<?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: how to keep variable in single box in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-variable-in-single-box/m-p/581815#M165410</link>
    <description>&lt;P&gt;or have a title statment&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
ods html file='E:\class.html' ;
title "Demographic";
proc report data=sashelp.class
nowd;
column name (sex age height) ;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 16 Aug 2019 18:28:39 GMT</pubDate>
    <dc:creator>VDD</dc:creator>
    <dc:date>2019-08-16T18:28:39Z</dc:date>
    <item>
      <title>how to keep variable in single box</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-variable-in-single-box/m-p/581745#M165376</link>
      <description>&lt;P&gt;ods html file='E:\class.html' ;&lt;BR /&gt;proc report data=sashelp.class&lt;BR /&gt;nowd;&lt;BR /&gt;column name ('demgraphic' sex age height) ;&lt;BR /&gt;run;&lt;BR /&gt;ods _all_ close ;&lt;/P&gt;
&lt;P&gt;If i apply below coding &lt;BR /&gt;column name ('demgraphic' sex age height) one structure is coming if we observe html file&lt;BR /&gt;The column 'name' above one empty box is there so how to avoid that empty box and 'name' should be in singe box&lt;BR /&gt;Note:Remove line above name column and keep single box&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2019 15:21:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-variable-in-single-box/m-p/581745#M165376</guid>
      <dc:creator>thanikondharish</dc:creator>
      <dc:date>2019-08-16T15:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep variable in single box</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-variable-in-single-box/m-p/581753#M165381</link>
      <description>&lt;P&gt;change this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;column name ('demgraphic' sex age height) ;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to this&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;column name (sex age height) ;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 16 Aug 2019 16:03:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-variable-in-single-box/m-p/581753#M165381</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-08-16T16:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep variable in single box</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-variable-in-single-box/m-p/581755#M165382</link>
      <description>demograhic should be display&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Aug 2019 16:06:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-variable-in-single-box/m-p/581755#M165382</guid>
      <dc:creator>thanikondharish</dc:creator>
      <dc:date>2019-08-16T16:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep variable in single box</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-variable-in-single-box/m-p/581762#M165387</link>
      <description>&lt;P&gt;this paper will tell you how to span columns and such that will suppress and or remove the empty cell you want to remove.&lt;/P&gt;
&lt;P&gt;&lt;FONT style="background-color: #ffffff;"&gt;&lt;A href="https://support.sas.com/rnd/papers/sgf07/sgf2007-report.pdf" target="_blank"&gt;https://support.sas.com/rnd/papers/sgf07/sgf2007-report.pdf&lt;/A&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2019 16:16:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-variable-in-single-box/m-p/581762#M165387</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-08-16T16:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep variable in single box</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-variable-in-single-box/m-p/581802#M165405</link>
      <description>&lt;P&gt;If location of the "name" is sufficient then this may suffice:&lt;/P&gt;
&lt;PRE&gt;proc report data=sashelp.class;
   column ('Name' name) ('Demographic' sex age height)
   ;
   define name / ' ';
run;&lt;/PRE&gt;
&lt;P&gt;Otherwise I suspect that you may be entering into the realms of the data step Report Writing Interface to merge the cell.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2019 17:57:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-variable-in-single-box/m-p/581802#M165405</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-08-16T17:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep variable in single box</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-variable-in-single-box/m-p/581815#M165410</link>
      <description>&lt;P&gt;or have a title statment&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
ods html file='E:\class.html' ;
title "Demographic";
proc report data=sashelp.class
nowd;
column name (sex age height) ;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 16 Aug 2019 18:28:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-variable-in-single-box/m-p/581815#M165410</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-08-16T18:28:39Z</dc:date>
    </item>
  </channel>
</rss>

