<?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: CALL DEFINE - Highlighting cells of the column in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/CALL-DEFINE-Highlighting-cells-of-the-column/m-p/484426#M21398</link>
    <description>&lt;P&gt;Thanks Cynthia, It really helped to identify the issue on my code. I actually wanted to highlight when PRODUCT of Region/East is higher than &lt;SPAN&gt;PRODUCT of Product Type/Furniture.&amp;nbsp;&lt;/SPAN&gt;I still can't figure out how to target that compute column to _c2_ so that I can get the&lt;/P&gt;
&lt;P&gt;output like attached. Would you please help. Here is my updated code based on the same dataset.&amp;nbsp;&amp;nbsp;&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="TAble_sas.png" style="width: 331px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22259iB4F4826C4588266D/image-size/large?v=v2&amp;amp;px=999" role="button" title="TAble_sas.png" alt="TAble_sas.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC REPORT DATA=sale NOWINDOWS MISSING OUT=test;&lt;BR /&gt;COLUMN country (region prodtype) , predict;&lt;BR /&gt;DEFINE country / GROUP;&lt;BR /&gt;DEFINE region / ACROSS;&lt;BR /&gt;DEFINE prodtype / ACROSS;&lt;BR /&gt;RBREAK AFTER / SUMMARIZE;&lt;BR /&gt;COMPUTE _c2_;&lt;BR /&gt; IF _c2_&amp;gt;_c4_ THEN CALL DEFINE (_c2_, 'style', 'style={background=Yellow}');&lt;BR /&gt;ENDCOMP;&lt;BR /&gt;RUN;&lt;/P&gt;</description>
    <pubDate>Mon, 06 Aug 2018 15:50:35 GMT</pubDate>
    <dc:creator>mlogan</dc:creator>
    <dc:date>2018-08-06T15:50:35Z</dc:date>
    <item>
      <title>CALL DEFINE - Highlighting cells of the column</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/CALL-DEFINE-Highlighting-cells-of-the-column/m-p/484174#M21387</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;I am stuck with highlighting some cells of a column based on a comparison of cells of another column. In the following code I tried to use CALL DEFINE so that it highlights when column _c2_ is bigger than _c3_. Can someone help me please.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SQL;
CREATE TABLE sale AS 
SELECT country, 
	   region, 
       prodtype, 
       product, 
	   actual LABEL=''FORMAT=comma10.2,
	   predict LABEL=''FORMAT=comma10.2,
	   month
FROM sashelp.prdsale 
WHERE mod(monotonic(),75)=0
ORDER BY ranuni(94612);
QUIT;

PROC REPORT DATA=sale NOWINDOWS MISSING HEADLINE HEADSKIP OUT=test;
COLUMN country (region prodtype) , predict;
DEFINE country / GROUP;
DEFINE region / ACROSS;
DEFINE prodtype / ACROSS;
RBREAK AFTER / SUMMARIZE SKIP ol;
COMPUTE region;
    IF _c2_&amp;gt;_c3_.sum THEN CALL DEFINE (_Col_, "style", "style={background=Yellow}");
ENDCOMP;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Aug 2018 16:11:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/CALL-DEFINE-Highlighting-cells-of-the-column/m-p/484174#M21387</guid>
      <dc:creator>mlogan</dc:creator>
      <dc:date>2018-08-05T16:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: CALL DEFINE - Highlighting cells of the column</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/CALL-DEFINE-Highlighting-cells-of-the-column/m-p/484187#M21388</link>
      <description>&lt;P&gt;Sometimes, it is extremely useful to put the data into the form you want it to be and then just use PROC REPORT to actually display the data with appropriate formatting. This is one of those cases, although in general I do it this way. I don't know if you can actually force PROC REPORT to do what you want without pre-processing the data (what do you think, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;?)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC  SQL;
CREATE TABLE sale AS 
SELECT country, 
	   region, 
       prodtype, 
       product, 
	   actual FORMAT=comma10.2,
	   predict FORMAT=comma10.2,
	   month
FROM sashelp.prdsale 
WHERE mod(monotonic(),75)=0
ORDER BY ranuni(94612);
QUIT;

proc summary data=sale nway;
	class country region;
	var predict;
	output out=_sums_ sum=;
run;
data _sums1_;
	merge _sums_(where=(region='EAST') rename=(predict=predict_east)) _sums_(where=(region='WEST') rename=(predict=predict_west));
	by country;
	if predict_east&amp;gt;predict_west then flag=1; else flag=0;
	drop region;
run;
proc report data=_sums1_ nowindows missing headline headskip out=test;
	column country flag ("Predicted Sales" predict_east predict_west);
	define country / group;
	define flag/display noprint;
	define predict_east / display sum "East";
	define predict_west / display sum "West";
	rbreak after / summarize skip ol;
	compute predict_east;
	    if flag=1 then call define (_col_, "style", "style={background=yellow}");
	endcomp;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Aug 2018 18:21:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/CALL-DEFINE-Highlighting-cells-of-the-column/m-p/484187#M21388</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-08-05T18:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: CALL DEFINE - Highlighting cells of the column</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/CALL-DEFINE-Highlighting-cells-of-the-column/m-p/484192#M21389</link>
      <description>&lt;P&gt;Hi:&lt;BR /&gt; Are you getting notes in the log? You do not need the .sum with absolute column numbers. So I would expect you to be seeing this error in the log:&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;ERROR: The variable type of _C3_.SUM is invalid in this context.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;NOTE: The preceding messages refer to the COMPUTE block for REGION.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;NOTE: Will not run due to compilation errors.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; But I think that there is still going to be a problem with your trafficlighting and your report doesn't see quite right to me. Do you want your headers to be like report #1 or #2 (without highlighting):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="what_report.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22237i9A7659A020689922/image-size/large?v=v2&amp;amp;px=999" role="button" title="what_report.png" alt="what_report.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Other issues in your code are that you can't use _COL_ in your CALL DEFINE. When you are working with ACROSS items, the convention is that you have to use&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;CALL DEFINE('_c2_','style','style={background=yellow}');&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; You have to use the absolute column number. You were making your IF test in the COMPUTE block for REGION, and so in that context, _COL_ would have applied to the REGION column, not to the PREDICT column (_C2_). Also, some of what you show in your code HEADLINE, HEADSKIP, SKIP, OL are all incompatible with your use of STYLE overrides. Those options only work in the LISTING destination and STYLE overrides do NOT work in the LISTING destination.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; In this example, the greater value between the 2 values is highlighted:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="alt_report.png" style="width: 493px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22238iC330218E30EA40CE/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt_report.png" alt="alt_report.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Pre-computing the values is necessary sometimes, not in this case. But it's still not entirely clear to me what you are trying to achieve.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Sun, 05 Aug 2018 18:58:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/CALL-DEFINE-Highlighting-cells-of-the-column/m-p/484192#M21389</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-08-05T18:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: CALL DEFINE - Highlighting cells of the column</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/CALL-DEFINE-Highlighting-cells-of-the-column/m-p/484426#M21398</link>
      <description>&lt;P&gt;Thanks Cynthia, It really helped to identify the issue on my code. I actually wanted to highlight when PRODUCT of Region/East is higher than &lt;SPAN&gt;PRODUCT of Product Type/Furniture.&amp;nbsp;&lt;/SPAN&gt;I still can't figure out how to target that compute column to _c2_ so that I can get the&lt;/P&gt;
&lt;P&gt;output like attached. Would you please help. Here is my updated code based on the same dataset.&amp;nbsp;&amp;nbsp;&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="TAble_sas.png" style="width: 331px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22259iB4F4826C4588266D/image-size/large?v=v2&amp;amp;px=999" role="button" title="TAble_sas.png" alt="TAble_sas.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC REPORT DATA=sale NOWINDOWS MISSING OUT=test;&lt;BR /&gt;COLUMN country (region prodtype) , predict;&lt;BR /&gt;DEFINE country / GROUP;&lt;BR /&gt;DEFINE region / ACROSS;&lt;BR /&gt;DEFINE prodtype / ACROSS;&lt;BR /&gt;RBREAK AFTER / SUMMARIZE;&lt;BR /&gt;COMPUTE _c2_;&lt;BR /&gt; IF _c2_&amp;gt;_c4_ THEN CALL DEFINE (_c2_, 'style', 'style={background=Yellow}');&lt;BR /&gt;ENDCOMP;&lt;BR /&gt;RUN;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Aug 2018 15:50:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/CALL-DEFINE-Highlighting-cells-of-the-column/m-p/484426#M21398</guid>
      <dc:creator>mlogan</dc:creator>
      <dc:date>2018-08-06T15:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: CALL DEFINE - Highlighting cells of the column</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/CALL-DEFINE-Highlighting-cells-of-the-column/m-p/484449#M21399</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Your CALL DEFINE syntax did not follow my example:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;CALL DEFINE('_c2_','style','style={background=yellow}');&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Anything for the first argument in a CALL DEFINE &lt;FONT color="#FF0000"&gt;&lt;U&gt;&lt;STRONG&gt;must&lt;/STRONG&gt; &lt;/U&gt;&lt;/FONT&gt;be quoted unless you are using _COL_ (not appropriate here) or _ROW_ (also not appropriate here).&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&amp;nbsp; Your code does not show the correct use of quotes. And you should have an issue with your COMPUTE block -- your code shows COMPUTE _C2_, which I would not expect to work. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="error_in_code.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22261iA0C5C16DC01F6DDF/image-size/large?v=v2&amp;amp;px=999" role="button" title="error_in_code.png" alt="error_in_code.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;I don't understand how you are getting any output to post.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&amp;nbsp; However, in your code, the way you have your COLUMN statement and as shown in your output, column _c2_ is the total for PREDICT value for ALL Products in Region EAST. In your TABLE, the variable _C4_ is the FURNITURE total for ALL regions on a row.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&amp;nbsp; Your example, doesn't make sense to me with your stated goal. Here's what I see in your example:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Your_output_annotated.png" style="width: 569px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22260i8A939BB6E24AD737/image-size/large?v=v2&amp;amp;px=999" role="button" title="Your_output_annotated.png" alt="Your_output_annotated.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In your code, you are comparing the sum of &lt;U&gt;&lt;STRONG&gt;all&lt;/STRONG&gt; &lt;/U&gt;PREDICT values for EAST (_C2_) with the sum of &lt;U&gt;&lt;STRONG&gt;all&lt;/STRONG&gt; &lt;/U&gt;PREDICT values for FURNITURE. In your post, you said that you "actually wanted to highlight when &lt;U&gt;&lt;STRONG&gt;PRODUCT&lt;/STRONG&gt; &lt;/U&gt;of Region/East is higher than &lt;SPAN&gt;&lt;U&gt;&lt;STRONG&gt;PRODUCT&lt;/STRONG&gt; &lt;/U&gt;of Product Type/Furniture." But your analysis variable is PREDICT. So your report does NOT show any PRODUCT values under the EAST region. This is what I find confusing. Did you mean to type PREDICT?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; The analysis variable on your report is PREDICT, what is showing in each cell is the PREDICT total. So your COMPUTE block should have&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;COMPUTE PREDICT;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;And, of course, you'd need to correct the CALL DEFINE statement, as I indicated above. If you mean PREDICT instead of PRODUCT in what you want, then my report #1 produced the desired results.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="fixed_report1.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22263iC7898A845F5F1459/image-size/large?v=v2&amp;amp;px=999" role="button" title="fixed_report1.png" alt="fixed_report1.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Notice how my COMPUTE block is on the PREDICT variable and my CALL DEFINE shows the correct syntax for argument 1.&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Other reports are possible using different nesting. I offer them as examples because I am not clear on why it makes sense to compare the sum of PREDICT for ALL the products for the EAST region with FURNITURE sales for ALL regions.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;This shows product types nesting within region:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="new_report2.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22264i10D9A470F0193825/image-size/large?v=v2&amp;amp;px=999" role="button" title="new_report2.png" alt="new_report2.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;This shows regions nested within product types:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="new_report3.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22265iE90FEBF324504398/image-size/large?v=v2&amp;amp;px=999" role="button" title="new_report3.png" alt="new_report3.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;I did not bother with highlighting because I'm not sure what you'd highlight in these 2 versions with different nestings.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Cynthia&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Aug 2018 17:03:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/CALL-DEFINE-Highlighting-cells-of-the-column/m-p/484449#M21399</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-08-06T17:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: CALL DEFINE - Highlighting cells of the column</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/CALL-DEFINE-Highlighting-cells-of-the-column/m-p/484590#M21401</link>
      <description>Hi Cynthia, Thanks for your time explaining all my errors and different possible outputs. I actually need report #1 your have shown. But the other 2 are also helpful that I can use on my project. Thanks again for taking your time to help me out. I guess I should read and practice the very basic of CALL DEFINE one more time.</description>
      <pubDate>Tue, 07 Aug 2018 02:02:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/CALL-DEFINE-Highlighting-cells-of-the-column/m-p/484590#M21401</guid>
      <dc:creator>mlogan</dc:creator>
      <dc:date>2018-08-07T02:02:35Z</dc:date>
    </item>
  </channel>
</rss>

