<?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: How to create a new custom category which has mutual data items? in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390113#M7981</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/93752"&gt;@collinelliot&lt;/a&gt;&amp;nbsp;No Problem..&amp;nbsp;Thanks for you reply.&lt;/P&gt;</description>
    <pubDate>Wed, 23 Aug 2017 06:02:48 GMT</pubDate>
    <dc:creator>KarunaTiwari</dc:creator>
    <dc:date>2017-08-23T06:02:48Z</dc:date>
    <item>
      <title>How to create a new custom category which has mutual data items?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/389743#M7971</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a Category field GEO which has values like India, USA and UK.&lt;/P&gt;&lt;P&gt;Now I want to show the revenues of India vs Overall in a bar chart.&lt;/P&gt;&lt;P&gt;I am able to create custom category -India(India) and Others (UK, USA).&lt;/P&gt;&lt;P&gt;But I want to create custom categories - I&lt;SPAN&gt;ndia(India) and Overall (India, UK, USA).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How can I achieve that?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks in advance!!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Aug 2017 09:24:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/389743#M7971</guid>
      <dc:creator>KarunaTiwari</dc:creator>
      <dc:date>2017-08-22T09:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new custom category which has mutual data items?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/389830#M7972</link>
      <description>&lt;P&gt;I would look into a multilabel format. That might do what you want.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's an example&amp;nbsp;that might get you started:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.sas.com/content/sgf/2016/12/16/creating-and-using-multilabel-formats/" target="_blank"&gt;http://blogs.sas.com/content/sgf/2016/12/16/creating-and-using-multilabel-formats/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Aug 2017 14:29:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/389830#M7972</guid>
      <dc:creator>collinelliot</dc:creator>
      <dc:date>2017-08-22T14:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new custom category which has mutual data items?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390007#M7976</link>
      <description>&lt;P&gt;I actually have no idea if these are applicable in Visual Analytics. I should have read the topic area of your post more carefully.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Aug 2017 19:47:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390007#M7976</guid>
      <dc:creator>collinelliot</dc:creator>
      <dc:date>2017-08-22T19:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new custom category which has mutual data items?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390009#M7977</link>
      <description>&lt;P&gt;One way would be to create calculated fields that can be agregated, something like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;IF ( 'GEO'n = 'INDIA' )
RETURN {1}
ELSE {0}&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;IF ( 'GEO'n In ('INDIA', 'US','UK') )
RETURN {1}
ELSE {0}&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Then just use those calculated fields in the chart&lt;/P&gt;</description>
      <pubDate>Tue, 22 Aug 2017 19:53:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390009#M7977</guid>
      <dc:creator>itchyeyeballs</dc:creator>
      <dc:date>2017-08-22T19:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new custom category which has mutual data items?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390113#M7981</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/93752"&gt;@collinelliot&lt;/a&gt;&amp;nbsp;No Problem..&amp;nbsp;Thanks for you reply.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2017 06:02:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390113#M7981</guid>
      <dc:creator>KarunaTiwari</dc:creator>
      <dc:date>2017-08-23T06:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new custom category which has mutual data items?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390122#M7984</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31007"&gt;@itchyeyeballs&lt;/a&gt;&amp;nbsp;Thanks for your reply.&lt;/P&gt;&lt;P&gt;I tried creating calculated fields as suggested by you but that did not work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want a bar chart like below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="InkedCapture_LI.jpg" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/14602i4AAC177A9E4D3D2E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="InkedCapture_LI.jpg" alt="InkedCapture_LI.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2017 06:02:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390122#M7984</guid>
      <dc:creator>KarunaTiwari</dc:creator>
      <dc:date>2017-08-23T06:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new custom category which has mutual data items?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390135#M7987</link>
      <description>&lt;P&gt;Can you post details of what you tried and how it went wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just kncked this one up&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.GIF" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/14603iA48FC742DFFBCAFF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.GIF" alt="Capture.GIF" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2017 08:07:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390135#M7987</guid>
      <dc:creator>itchyeyeballs</dc:creator>
      <dc:date>2017-08-23T08:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new custom category which has mutual data items?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390147#M7988</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31007"&gt;@itchyeyeballs&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have two columns in my data GEO and Business Verticals.&lt;/P&gt;&lt;P&gt;The GEO field contains - India, UK, USA, etc&lt;/P&gt;&lt;P&gt;I want to create a barchart showing the Distribution of Business verticals&amp;nbsp;in&amp;nbsp;India vs all the countries(including India).&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="Capture.PNG" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/14604iA3EE62E6951CE3F3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to create two calculated items - Geo_India which is equal to 1&amp;nbsp;when GEO = India; otherwise 0&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Geo_Overall&amp;nbsp;&lt;SPAN&gt;which is equal to 1&amp;nbsp;when GEO&amp;nbsp;in (India, UK, USA); otherwise 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;then was trying to convert these 2 measures to category to be used in the bar chart.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;but did not get what i wanted to achieve.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Other option that I tried earlier was to create a custom category with the help of GEO field.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But then I am not able to put India under both the labels - India and Overall.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks for your help.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2017 08:42:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390147#M7988</guid>
      <dc:creator>KarunaTiwari</dc:creator>
      <dc:date>2017-08-23T08:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new custom category which has mutual data items?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390157#M7989</link>
      <description>&lt;P&gt;Put your two calculated fields into the measures section of the visual&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.GIF" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/14606iDC463DEDF00AF8DD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.GIF" alt="Capture.GIF" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2017 09:12:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390157#M7989</guid>
      <dc:creator>itchyeyeballs</dc:creator>
      <dc:date>2017-08-23T09:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new custom category which has mutual data items?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390160#M7990</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31007"&gt;@itchyeyeballs&lt;/a&gt;&lt;/P&gt;&lt;P&gt;If I&amp;nbsp;put my&amp;nbsp;&lt;SPAN&gt;two calculated fields into the measures section of the visual, then it will show me the frequency of these two calculate fields but I want to show the frequency of Business Verticals based on these calculated fields (Number of Business Verticals in India vs number of Business vertiacls Overall)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Basically I want to use them as categories.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2017 09:19:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390160#M7990</guid>
      <dc:creator>KarunaTiwari</dc:creator>
      <dc:date>2017-08-23T09:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new custom category which has mutual data items?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390163#M7991</link>
      <description>&lt;P&gt;Does the business verticals column hold numbers that you want to sum?&lt;/P&gt;&lt;P&gt;If you you could change you calculated fields to&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;IF ( 'GEO'n = 'INDIA' )
RETURN 'Business Verticals column'n
ELSE {0}&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 Aug 2017 09:28:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390163#M7991</guid>
      <dc:creator>itchyeyeballs</dc:creator>
      <dc:date>2017-08-23T09:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new custom category which has mutual data items?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390207#M7992</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31007"&gt;@itchyeyeballs&lt;/a&gt;&lt;/P&gt;&lt;P&gt;No Business Verticals is a categorical field and I want to show frequency of Business Verticals based on GEO.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2017 12:48:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390207#M7992</guid>
      <dc:creator>KarunaTiwari</dc:creator>
      <dc:date>2017-08-23T12:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new custom category which has mutual data items?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390545#M8008</link>
      <description>&lt;P&gt;If you put the business verticals category into the category role, then the two calculated fields as measures it should give a chart with India vs Total for each bsuiness vertical.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If thats not what you need can you share some dummy data?&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2017 09:46:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390545#M8008</guid>
      <dc:creator>itchyeyeballs</dc:creator>
      <dc:date>2017-08-24T09:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new custom category which has mutual data items?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390560#M8013</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31007"&gt;@itchyeyeballs&lt;/a&gt;&amp;nbsp;Thanks a ton for your time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please find attached the dummy data and the graph (Both in Excel).&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2017 10:59:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390560#M8013</guid>
      <dc:creator>KarunaTiwari</dc:creator>
      <dc:date>2017-08-24T10:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new custom category which has mutual data items?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390617#M8014</link>
      <description>&lt;P&gt;Like this?&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="Capture.GIF" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/14637i48F45666FAB570C0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.GIF" alt="Capture.GIF" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Formula for india is&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;IF ( 'GEO'n = 'INDIA' )
RETURN 1
ELSE 0&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;For overall I just used the default frequency measure but renamed it&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2017 13:49:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390617#M8014</guid>
      <dc:creator>itchyeyeballs</dc:creator>
      <dc:date>2017-08-24T13:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new custom category which has mutual data items?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390655#M8015</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31007"&gt;@itchyeyeballs&lt;/a&gt;Thanks a ton for your time and patience!!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2017 15:40:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390655#M8015</guid>
      <dc:creator>KarunaTiwari</dc:creator>
      <dc:date>2017-08-24T15:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new custom category which has mutual data items?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390659#M8016</link>
      <description>&lt;P&gt;No problem, glad it did what you need&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2017 15:42:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-create-a-new-custom-category-which-has-mutual-data-items/m-p/390659#M8016</guid>
      <dc:creator>itchyeyeballs</dc:creator>
      <dc:date>2017-08-24T15:42:42Z</dc:date>
    </item>
  </channel>
</rss>

