<?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: Changing Row Color With Proc Report in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-Row-Color-With-Proc-Report/m-p/145099#M11378</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add the nowd (nowindows) option to your proc report statement. Proc Report can be an interactive procedure, so you want to tell SAS that you want it to be non-interactive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc report data=panel_1 nowd;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Jan 2014 17:38:41 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2014-01-17T17:38:41Z</dc:date>
    <item>
      <title>Changing Row Color With Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-Row-Color-With-Proc-Report/m-p/145096#M11375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to create a PDF report that has different colored rows based on the value of my variable type. I would like the rows to be green when type='Complete', yellow when type='Planned' and red when type='At Risk'. I have tried running the following compute block:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; compute type;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if type='Complete' then call define (_row_,'style','style=[BACKGROUND=lightGREEN]');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if type='Planned' then call define (_row_,'style','style=[BACKGROUND=lightYELLOW]');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if type='At Risk' then call define (_row_,'style','style=[BACKGROUND=lightRED]');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endcomp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used a run statement as well as an ods pdf close statement at the end of the proc report step but when I run this section of my code SAS indicates that Proc Report is still running and will not produce the PDF file. How can I successfully produce this report?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 16:51:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-Row-Color-With-Proc-Report/m-p/145096#M11375</guid>
      <dc:creator>AKNess</dc:creator>
      <dc:date>2014-01-17T16:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Row Color With Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-Row-Color-With-Proc-Report/m-p/145097#M11376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Full code please and log please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you include nowd in the proc report statement as well?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 17:04:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-Row-Color-With-Proc-Report/m-p/145097#M11376</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-01-17T17:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Row Color With Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-Row-Color-With-Proc-Report/m-p/145098#M11377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My full code looks like this:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Proc Report.jpg" class="jive-image-thumbnail jive-image" height="205" src="https://communities.sas.com/legacyfs/online/4760_Proc Report.jpg" width="560" /&gt;&lt;/P&gt;&lt;P&gt;I'm not very familiar with Proc Report and am not sure if I'm using any of the options correctly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 17:22:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-Row-Color-With-Proc-Report/m-p/145098#M11377</guid>
      <dc:creator>AKNess</dc:creator>
      <dc:date>2014-01-17T17:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Row Color With Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-Row-Color-With-Proc-Report/m-p/145099#M11378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add the nowd (nowindows) option to your proc report statement. Proc Report can be an interactive procedure, so you want to tell SAS that you want it to be non-interactive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc report data=panel_1 nowd;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 17:38:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-Row-Color-With-Proc-Report/m-p/145099#M11378</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-01-17T17:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Row Color With Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-Row-Color-With-Proc-Report/m-p/145100#M11379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That did it! Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 17:44:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-Row-Color-With-Proc-Report/m-p/145100#M11379</guid>
      <dc:creator>AKNess</dc:creator>
      <dc:date>2014-01-17T17:44:03Z</dc:date>
    </item>
  </channel>
</rss>

