<?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: Style statement in Proc report in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Style-statement-in-Proc-report/m-p/36694#M9293</link>
    <description>Hi can anyone looki into this problem and kindly let me know....if any one can solve this........the code is provided in this thread and the problem as well</description>
    <pubDate>Thu, 28 May 2009 13:11:39 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2009-05-28T13:11:39Z</dc:date>
    <item>
      <title>Style statement in Proc report</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Style-statement-in-Proc-report/m-p/36689#M9288</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
My Problem is........ am exporting proc report output to pdf by using ods statement.&lt;BR /&gt;
In that PDF output, i am getting the some bold tables lines and some light lines. i just want to change that format to uniform i.e light lines. So what is the syntax for doing this?&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
kumar</description>
      <pubDate>Tue, 26 May 2009 15:16:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Style-statement-in-Proc-report/m-p/36689#M9288</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-05-26T15:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: Style statement in Proc report</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Style-statement-in-Proc-report/m-p/36690#M9289</link>
      <description>Hi:&lt;BR /&gt;
  First of all, make sure you view your PDF at 100% zoom. Sometimes when the PDF zoom is less than 100%, you can have border lines looking thicker or thinner than you expect. That is a function of the zoom mode -- when you print or view at 100%, the lines are normal.&lt;BR /&gt;
&lt;BR /&gt;
  Another thing you can do is try different style templates:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods pdf file='xxx.pdf' style=journal;&lt;BR /&gt;
  ... your proc report;&lt;BR /&gt;
ods pdf close;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
Journal is a very nice, crisp black and white style that a lot of my students prefer.&lt;BR /&gt;
&lt;BR /&gt;
Last, but not least, you can alter the style of the table and the interior table lines:&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods pdf file='yyy.pdf';&lt;BR /&gt;
       &lt;BR /&gt;
  proc report data=sashelp.class nowd&lt;BR /&gt;
       style(report)={bordercolor=cxdddddd&lt;BR /&gt;
                      borderwidth=1pt&lt;BR /&gt;
                      rules=all frame=box};&lt;BR /&gt;
  run;&lt;BR /&gt;
            &lt;BR /&gt;
ods pdf close;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
The color "cxdddddd" is a hex color specification for a very light gray. Refer to this documentation site for more info on style attributes and their values:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002972093.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002972093.htm&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Tue, 26 May 2009 16:35:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Style-statement-in-Proc-report/m-p/36690#M9289</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-05-26T16:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: Style statement in Proc report</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Style-statement-in-Proc-report/m-p/36691#M9290</link>
      <description>Hi cynthia,&lt;BR /&gt;
&lt;BR /&gt;
i used all styles which are there in sas and also tried by using proc template as well. But there is no change, still i observed some bold and light lines.&lt;BR /&gt;
&lt;BR /&gt;
as u said i zoomed that page to 100%..........&lt;BR /&gt;
&lt;BR /&gt;
ok can u raun this code .....and u can observe some bold and light lines.....so i dont want both .......i need all bold or all light lines.&lt;BR /&gt;
can u please give me some soln.&lt;BR /&gt;
proc template;&lt;BR /&gt;
define style Styles.journal;&lt;BR /&gt;
/*parent = Styles.listing;*/&lt;BR /&gt;
STYLE SystemTitle /&lt;BR /&gt;
FONT_FACE = "Comic Sans MS"&lt;BR /&gt;
FONT_SIZE = 5&lt;BR /&gt;
FONT_WEIGHT = bold&lt;BR /&gt;
FONT_STYLE = roman&lt;BR /&gt;
FOREGROUND = midnightblue&lt;BR /&gt;
BACKGROUND = white;&lt;BR /&gt;
STYLE SystemFooter /&lt;BR /&gt;
FONT_FACE = "Comic Sans MS"&lt;BR /&gt;
FONT_SIZE = 2&lt;BR /&gt;
FONT_WEIGHT = bold&lt;BR /&gt;
FONT_STYLE = italic&lt;BR /&gt;
FOREGROUND = midnightblue&lt;BR /&gt;
BACKGROUND = white;&lt;BR /&gt;
STYLE Header /&lt;BR /&gt;
FONT_FACE = "Times New Roman"&lt;BR /&gt;
FONT_SIZE = 4&lt;BR /&gt;
FONT_WEIGHT = medium&lt;BR /&gt;
FONT_STYLE = roman&lt;BR /&gt;
FOREGROUND = midnightblue&lt;BR /&gt;
BACKGROUND = white;&lt;BR /&gt;
STYLE Data /&lt;BR /&gt;
FONT_FACE = "Times New Roman"&lt;BR /&gt;
FONT_SIZE = 2&lt;BR /&gt;
FONT_WEIGHT = medium&lt;BR /&gt;
FONT_STYLE = roman&lt;BR /&gt;
FOREGROUND = black&lt;BR /&gt;
BACKGROUND = white;&lt;BR /&gt;
STYLE Table /&lt;BR /&gt;
FOREGROUND = black&lt;BR /&gt;
BACKGROUND = white&lt;BR /&gt;
CELLSPACING = 0&lt;BR /&gt;
CELLPADDING = 3&lt;BR /&gt;
FRAME = box&lt;BR /&gt;
RULES = all;&lt;BR /&gt;
STYLE Body /&lt;BR /&gt;
FOREGROUND = black&lt;BR /&gt;
BACKGROUND = white&lt;BR /&gt;
TOPMARGIN=1in&lt;BR /&gt;
BOTTOMMARGIN=1in&lt;BR /&gt;
LEFTMARGIN = 1in&lt;BR /&gt;
RIGHTMARGIN = 1in;&lt;BR /&gt;
STYLE SysTitleAndFooterContainer /&lt;BR /&gt;
CELLSPACING=0;&lt;BR /&gt;
end;&lt;BR /&gt;
run;&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods noptitle;&lt;BR /&gt;
options nodate nonumber;&lt;BR /&gt;
ods pdf file="d:\sample5.pdf" style=journal;&lt;BR /&gt;
proc report data=sashelp.class nowd&lt;BR /&gt;
/*style(column)={background=_undef_ }*/&lt;BR /&gt;
style(report)={rules=all frame=box background=_undef_};&lt;BR /&gt;
/*style(header)={background=_undef_}*/&lt;BR /&gt;
/*style(summary)={htmlstyle="border-bottom:2px thick double green"};*/&lt;BR /&gt;
column&lt;BR /&gt;
age&lt;BR /&gt;
height&lt;BR /&gt;
sex&lt;BR /&gt;
name&lt;BR /&gt;
weight;&lt;BR /&gt;
define age/"AGE" ;&lt;BR /&gt;
define height/"Height" ;&lt;BR /&gt;
define sex/"Sex" ;&lt;BR /&gt;
define name/"Name";&lt;BR /&gt;
define weight/"Weight" ;&lt;BR /&gt;
&lt;BR /&gt;
run;&lt;BR /&gt;
ods pdf close;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
kumar</description>
      <pubDate>Wed, 27 May 2009 05:40:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Style-statement-in-Proc-report/m-p/36691#M9290</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-05-27T05:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: Style statement in Proc report</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Style-statement-in-Proc-report/m-p/36692#M9291</link>
      <description>Hi:&lt;BR /&gt;
  When I zoom to 100%, the lines are mostly the same in appearance; when I zoom to 125%, they look the same thickness to me. When I print the PDF file, the lines all are the same, and, upon examination with a magnifying glass, I cannot detect a difference between the line thicknesses.&lt;BR /&gt;
 &lt;BR /&gt;
  If you do not find this to be the case, then I suggest you work with Tech Support and possibly send them a fax of the printed PDF that shows the differing line thicknesses. &lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 27 May 2009 07:59:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Style-statement-in-Proc-report/m-p/36692#M9291</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-05-27T07:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: Style statement in Proc report</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Style-statement-in-Proc-report/m-p/36693#M9292</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
i took a print out ........but i found a difference between Age column  11 and 14....there is a light line b/w 11 and 14..and remaining lines are bold......&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
kumar</description>
      <pubDate>Wed, 27 May 2009 09:21:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Style-statement-in-Proc-report/m-p/36693#M9292</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-05-27T09:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: Style statement in Proc report</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Style-statement-in-Proc-report/m-p/36694#M9293</link>
      <description>Hi can anyone looki into this problem and kindly let me know....if any one can solve this........the code is provided in this thread and the problem as well</description>
      <pubDate>Thu, 28 May 2009 13:11:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Style-statement-in-Proc-report/m-p/36694#M9293</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-05-28T13:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: Style statement in Proc report</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Style-statement-in-Proc-report/m-p/36695#M9294</link>
      <description>Hi:&lt;BR /&gt;
  This is really an issue for Tech Support. To open a ticket with Tech Support, go to: &lt;BR /&gt;
&lt;A href="http://support.sas.com/ctx/supportform/createForm" target="_blank"&gt;http://support.sas.com/ctx/supportform/createForm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
  They can look at your code, track their responses to you and help you come up with a resolution.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 28 May 2009 14:24:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Style-statement-in-Proc-report/m-p/36695#M9294</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-05-28T14:24:21Z</dc:date>
    </item>
  </channel>
</rss>

