<?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 Columns splitting to second line in proc report in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Columns-splitting-to-second-line-in-proc-report/m-p/946450#M370643</link>
    <description>&lt;P&gt;Hello everyone. please I need help with replicating a listing template.&lt;BR /&gt;I want to display few columns using proc report based on a given template.&amp;nbsp;&lt;BR /&gt;The columns are not staying on the same line. About three columns continue to the next line which is not looking good. This occurs because the cellwidth for each column is around 25. If I should reduce the cellwidth, the columns will stay on this same line, which is perfect. However, the template I'm trying to copy is well spaced around 25 width.&lt;BR /&gt;How can I retain the width(around 25) I want and still maintian the columns on the same line?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;I have tried to use the papersize option to increase the size of the page, it is not working.&lt;BR /&gt;What can I do, please?&lt;/P&gt;
&lt;P&gt;Thanks all for your replies.&lt;/P&gt;</description>
    <pubDate>Sun, 06 Oct 2024 18:21:01 GMT</pubDate>
    <dc:creator>PrinceAde</dc:creator>
    <dc:date>2024-10-06T18:21:01Z</dc:date>
    <item>
      <title>Columns splitting to second line in proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Columns-splitting-to-second-line-in-proc-report/m-p/946450#M370643</link>
      <description>&lt;P&gt;Hello everyone. please I need help with replicating a listing template.&lt;BR /&gt;I want to display few columns using proc report based on a given template.&amp;nbsp;&lt;BR /&gt;The columns are not staying on the same line. About three columns continue to the next line which is not looking good. This occurs because the cellwidth for each column is around 25. If I should reduce the cellwidth, the columns will stay on this same line, which is perfect. However, the template I'm trying to copy is well spaced around 25 width.&lt;BR /&gt;How can I retain the width(around 25) I want and still maintian the columns on the same line?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;I have tried to use the papersize option to increase the size of the page, it is not working.&lt;BR /&gt;What can I do, please?&lt;/P&gt;
&lt;P&gt;Thanks all for your replies.&lt;/P&gt;</description>
      <pubDate>Sun, 06 Oct 2024 18:21:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Columns-splitting-to-second-line-in-proc-report/m-p/946450#M370643</guid>
      <dc:creator>PrinceAde</dc:creator>
      <dc:date>2024-10-06T18:21:01Z</dc:date>
    </item>
    <item>
      <title>Re: Columns splitting to second line in proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Columns-splitting-to-second-line-in-proc-report/m-p/946457#M370649</link>
      <description>&lt;P&gt;Please provide the code and sample data. Show us the incorrect output.&lt;/P&gt;</description>
      <pubDate>Sun, 06 Oct 2024 19:42:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Columns-splitting-to-second-line-in-proc-report/m-p/946457#M370649</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-10-06T19:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: Columns splitting to second line in proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Columns-splitting-to-second-line-in-proc-report/m-p/946546#M370673</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/440493"&gt;@PrinceAde&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello everyone. please I need help with replicating a listing template.&lt;BR /&gt;I want to display few columns using proc report based on a given template.&amp;nbsp;&lt;BR /&gt;The columns are not staying on the same line. About three columns continue to the next line which is not looking good. This occurs because the cellwidth for each column is around 25. If I should reduce the cellwidth, the columns will stay on this same line, which is perfect. However, the template I'm trying to copy is well spaced around 25 width.&lt;BR /&gt;How can I retain the width(around 25) I want and still maintian the columns on the same line?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;I have tried to use the papersize option to increase the size of the page, it is not working.&lt;BR /&gt;What can I do, please?&lt;/P&gt;
&lt;P&gt;Thanks all for your replies.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;25 what?&amp;nbsp; If you are counting letters to estimate space welcome to 1984. Character "space" varies depending on the display font and most of the default fonts used with SAS for output in HTML (results window), RTF, PDF, Excel will use proportional fonts as well. Which means that "iiii" takes up much less space than "WWWW" and is a very unreliable way to describe width.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS output for proc report has multiple units that you can use to control width of cells (and other things) 25in (likely way&amp;nbsp; too large) 25mm, 25CM, 25px (pixels are display device dependent and also someone unreliable because you don't know what resolution a reader's monitor may have) in some cases percent of display width, EM and EX typesetting measurements or PT (printer's point often used as a Font size).&lt;/P&gt;
&lt;P&gt;In some usages if you specify a "width" of 25 with no unit specified the result will be 25/150 inches.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have to specify widths then I strongly recommend using a unit of measure you are familiar width and understand.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2024 15:01:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Columns-splitting-to-second-line-in-proc-report/m-p/946546#M370673</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-10-07T15:01:24Z</dc:date>
    </item>
  </channel>
</rss>

