<?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 Reducingthe Line spacing in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Reducingthe-Line-spacing/m-p/2599#M1130</link>
    <description>Hi Friends,&lt;BR /&gt;
&lt;BR /&gt;
I tried to write the dataset observation to PDF. But the PDF file has large line spacing between the two observations. Please help me how to reduce the line space.&lt;BR /&gt;
 And also i want to write some datas in bold (particular obsertion). Is it possible to use BOLD options in Put statement. please help me.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Selvi.</description>
    <pubDate>Thu, 22 Mar 2007 14:59:39 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2007-03-22T14:59:39Z</dc:date>
    <item>
      <title>Reducingthe Line spacing</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Reducingthe-Line-spacing/m-p/2599#M1130</link>
      <description>Hi Friends,&lt;BR /&gt;
&lt;BR /&gt;
I tried to write the dataset observation to PDF. But the PDF file has large line spacing between the two observations. Please help me how to reduce the line space.&lt;BR /&gt;
 And also i want to write some datas in bold (particular obsertion). Is it possible to use BOLD options in Put statement. please help me.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Selvi.</description>
      <pubDate>Thu, 22 Mar 2007 14:59:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Reducingthe-Line-spacing/m-p/2599#M1130</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-03-22T14:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: Reducingthe Line spacing</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Reducingthe-Line-spacing/m-p/2600#M1131</link>
      <description>Hi: &lt;BR /&gt;
  You may not need to use the DATA step for what you want to accomplish. It is very easy in PROC REPORT to highlight a whole row conditionally.&lt;BR /&gt;
  &lt;BR /&gt;
  Consider the example code at the bottom. If you run the program, you will see that the output has every row where the age is 12 highlighted. In addition, I changed the font of the output to Courier New and removed the interior lines and borders (since that was something you wanted to do in a previous post.)&lt;BR /&gt;
  &lt;BR /&gt;
  Perhaps this is something that might be an alternative to DATA _NULL_.&lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
*** the code;&lt;BR /&gt;
options center leftmargin=1in rightmargin=1in topmargin=1in bottommargin=1in;&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods pdf file='c:\temp\bold_row.pdf';&lt;BR /&gt;
ods escapechar='~';&lt;BR /&gt;
&lt;BR /&gt;
title f="Courier New" bold 'My Title in Courier';&lt;BR /&gt;
proc report data=sashelp.class nowd&lt;BR /&gt;
     style(report)={rules=none frame=void &lt;BR /&gt;
                    cellspacing=0 cellpadding=2}&lt;BR /&gt;
	 style(header)={font_face="Courier New" &lt;BR /&gt;
                        font_size=12pt&lt;BR /&gt;
                        background=white}&lt;BR /&gt;
	 style(column)={font_face="Courier New" font_size=10pt};&lt;BR /&gt;
  column name age height;&lt;BR /&gt;
  define name / order;&lt;BR /&gt;
  define age / display;&lt;BR /&gt;
  define height/display;&lt;BR /&gt;
  compute age;&lt;BR /&gt;
    if age = 12 then&lt;BR /&gt;
       call define (_ROW_,'style',&lt;BR /&gt;
  	              'style={font_weight=bold font_face="Courier New"}');&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
run;&lt;BR /&gt;
ods pdf close;[/pre]</description>
      <pubDate>Thu, 22 Mar 2007 16:37:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Reducingthe-Line-spacing/m-p/2600#M1131</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2007-03-22T16:37:58Z</dc:date>
    </item>
  </channel>
</rss>

