<?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: Highlight content in Proc report in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Highlight-content-in-Proc-report/m-p/943300#M369755</link>
    <description>&lt;P&gt;"Missing in source" looks like the name of a column to us humans, but in PROC REPORT with ACROSS variables, there is no such column named "Missing in source". The column name in PROC REPORT is _C4_.&lt;/P&gt;</description>
    <pubDate>Tue, 10 Sep 2024 13:24:59 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2024-09-10T13:24:59Z</dc:date>
    <item>
      <title>Highlight content in Proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Highlight-content-in-Proc-report/m-p/943271#M369749</link>
      <description>&lt;P&gt;Any idea on how to highlight only column "missing in source" ?&lt;/P&gt;
&lt;P&gt;Sorry that i cant put all my code here..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
	value tagging
	low - 0 = "lightgreen"
	1 - high = "lightred";
run;

title "Summary for SDIS 2";
proc report data = compare_SDIS2 nowd;
	column app_sys_code reportable_ind tag;
	define app_sys_code / group;
	define reportable_ind / group;
	define tag / across;
	
	compute tag;
		call define (_col_,"style","STYLE=[BACKGROUND=tagging.]");
	endcomp;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This is also my first time using proc report, please let me know also if there's better way to&amp;nbsp; do the content highlights.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 497px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/100144iB9E1458F5C41982A/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 09:41:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Highlight-content-in-Proc-report/m-p/943271#M369749</guid>
      <dc:creator>ChrisWoo</dc:creator>
      <dc:date>2024-09-10T09:41:36Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight content in Proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Highlight-content-in-Proc-report/m-p/943281#M369750</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;	compute tag;
		call define ('_c4_',"style","STYLE=[BACKGROUND=tagging.]");
	endcomp;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 10 Sep 2024 11:11:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Highlight-content-in-Proc-report/m-p/943281#M369750</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-09-10T11:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight content in Proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Highlight-content-in-Proc-report/m-p/943299#M369754</link>
      <description>&lt;P&gt;Thanks for the help.&lt;/P&gt;
&lt;P&gt;However, why I cant just put a column name like "Missing in source" ?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChrisWoo_0-1725974100183.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/100150iE441339EF61BE25B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ChrisWoo_0-1725974100183.png" alt="ChrisWoo_0-1725974100183.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is because i may have other column name "Missing in CCRIS Mart".&lt;BR /&gt;I wish to write using a column name rather than column number.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChrisWoo_1-1725974298903.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/100151i566728D4452E5DC5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ChrisWoo_1-1725974298903.png" alt="ChrisWoo_1-1725974298903.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 13:19:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Highlight-content-in-Proc-report/m-p/943299#M369754</guid>
      <dc:creator>ChrisWoo</dc:creator>
      <dc:date>2024-09-10T13:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight content in Proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Highlight-content-in-Proc-report/m-p/943300#M369755</link>
      <description>&lt;P&gt;"Missing in source" looks like the name of a column to us humans, but in PROC REPORT with ACROSS variables, there is no such column named "Missing in source". The column name in PROC REPORT is _C4_.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 13:24:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Highlight-content-in-Proc-report/m-p/943300#M369755</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-09-10T13:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight content in Proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Highlight-content-in-Proc-report/m-p/943302#M369757</link>
      <description>i see, thanks for the explanation</description>
      <pubDate>Tue, 10 Sep 2024 13:25:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Highlight-content-in-Proc-report/m-p/943302#M369757</guid>
      <dc:creator>ChrisWoo</dc:creator>
      <dc:date>2024-09-10T13:25:23Z</dc:date>
    </item>
  </channel>
</rss>

