<?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: Count Months Above Target with Hierarchy Roll Up in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/841149#M6367</link>
    <description>&lt;P&gt;Figured out how the Matrix was impacting this.&amp;nbsp; Thanks again,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="176844" data-lia-user-login="lc_finance" class="lia-mention lia-mention-user"&gt;lc_finance&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 08 Nov 2019 15:48:20 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-11-08T15:48:20Z</dc:date>
    <item>
      <title>Count Months Above Target with Hierarchy Roll Up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/835148#M6157</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Trying to get a simple count of months above target from my dataset, but having an issue with it rolling up through my hierarchy.&amp;nbsp; Here is a basic example of my dataset columns which contains actuals and targets for a rolling 12 months.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Month&lt;/TD&gt;&lt;TD&gt;Store&lt;/TD&gt;&lt;TD&gt;District&lt;/TD&gt;&lt;TD&gt;Market&lt;/TD&gt;&lt;TD&gt;Actual&lt;/TD&gt;&lt;TD&gt;Target&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a measure that calculates % to Target and I want to see how many months out of the year each store/district/market achieved their target.&amp;nbsp; Right now I am using the following -&amp;nbsp;&lt;/P&gt;&lt;P&gt;% to Target = Divide(sum('Table'[Actual]),sum('Table'[Target]))&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;MonthsAtTgt = calculate(distinctcount('Table'[Month]),filter('Table','Table'[% to Target]&amp;gt;=1))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;This works well at the store level but does not produce the correct count for hierarchies above - for example, if I filter to a single District or Market the result is always the max of 12.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;What am I missing?&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 01 Nov 2019 18:19:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/835148#M6157</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-01T18:19:42Z</dc:date>
    </item>
    <item>
      <title>Re: Count Months Above Target with Hierarchy Roll Up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/835610#M6182</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&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;Currently the formula checks for months with Actuals higher than Targets. As you say, this works well at the store level.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, Store 1 has January Actuals higher than Target. Then, Store 2 has February Actuals higher than Target. Then, Store 5 has March Actuals higher than Target. etc.&lt;/P&gt;&lt;P&gt;When filtering at the market level, all these stores are included in your selection, so you have always all months exceeding the target.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can fix that by:&lt;/P&gt;&lt;P&gt;- adding up all the stores when checking at district level&lt;/P&gt;&lt;P&gt;- adding up all the stores and all the districts when checking at market level&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;% to Target District = calculate(Divide(sum('Table'[Actual]),sum('Table'[Target])),ALL('Table'[Store]) )

MonthsAtTgt District = calculate(distinctcount('Table'[Month]),filter('Table','Table'[% to Target]&amp;gt;=1),ALL('Table'[Store]) )

% to Target Market = calculate(Divide(sum('Table'[Actual]),sum('Table'[Target])),ALL('Table'[Store], 'Table'[District]) )

MonthsAtTgt Market = calculate(distinctcount('Table'[Month]),filter('Table','Table'[% to Target]&amp;gt;=1),ALL('Table'[Store]), 'Table'[District]) )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does this help you?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LC&lt;/P&gt;&lt;P&gt;Interested in Power BI and DAX templates? Check out my blog at &lt;A href="http://www.finance-bi.com" target="_blank"&gt;www.finance-bi.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 03 Nov 2019 22:25:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/835610#M6182</guid>
      <dc:creator>lc_finance</dc:creator>
      <dc:date>2019-11-03T22:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: Count Months Above Target with Hierarchy Roll Up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/836421#M6218</link>
      <description>&lt;P&gt;It is somewhat of a workaround to get the number, but my goal would be to have one measure that calculates and filters with the hierarchy filters.&amp;nbsp; End results is a card that displays the count of months above target that changes with the hierarchy filters whether it's drilled all the way down to store or left at Market.&amp;nbsp; Is this possible?&lt;/P&gt;</description>
      <pubDate>Mon, 04 Nov 2019 16:12:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/836421#M6218</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-04T16:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: Count Months Above Target with Hierarchy Roll Up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/836674#M6229</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&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;No problem, that's also possible. We can use the function ISFILTERED to check out which column is filtered, and based on that show the correct calculation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can find the updated DAX formulas below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;% to Target = 

VAR forStore = Divide(sum('Table'[Actual]),sum('Table'[Target]))
VAR forDistrict = calculate(Divide(sum('Table'[Actual]),sum('Table'[Target])),ALL('Table'[Store]) )
VAR forMarket = calculate(Divide(sum('Table'[Actual]),sum('Table'[Target])),ALL('Table'[Store], 'Table'[District]) )

RETURN IF(ISFILTERED('Table'[Market]),
        forMarket ,
        IF(ISFILTERED('Table'[District]),
        forDistrict ,
        forStore ) )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;MonthsAtTgt = 

VAR forStore = calculate(distinctcount('Table'[Month]),filter('Table','Table'[% to Target]&amp;gt;=1))
VAR forDistrict = calculate(distinctcount('Table'[Month]),filter('Table','Table'[% to Target]&amp;gt;=1),ALL('Table'[Store]) )
VAR forMarket = calculate(distinctcount('Table'[Month]),filter('Table','Table'[% to Target]&amp;gt;=1),ALL('Table'[Store]), 'Table'[District]) )

RETURN IF(ISFILTERED('Table'[Market]),
        forMarket ,
        IF(ISFILTERED('Table'[District]),
        forDistrict ,
        forStore ) )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this what you are looking for?&lt;/P&gt;&lt;P&gt;Do not hesitate if you have more questions,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LC&lt;/P&gt;&lt;P&gt;Interested in Power BI and DAX templates? Check out my blog at &lt;A href="http://www.finance-bi.com" target="_blank"&gt;www.finance-bi.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Nov 2019 22:53:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/836674#M6229</guid>
      <dc:creator>lc_finance</dc:creator>
      <dc:date>2019-11-04T22:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: Count Months Above Target with Hierarchy Roll Up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/837749#M6263</link>
      <description>&lt;P&gt;Appreciate the help so far&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="176844" data-lia-user-login="lc_finance" class="lia-mention lia-mention-user"&gt;lc_finance&lt;/a&gt; !&amp;nbsp; The first DAX formula worked like a charm, but I'm having an issue with the second one.&amp;nbsp; I was able to create the MonthsAtTgt measure just fine but am now receiving an error when attempting to create a visual with it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Error: Couldn't load data for this visual&lt;/P&gt;&lt;P&gt;MdxScript(Model) (17, 133) Calculation error in measure 'Table'[% to Target]: Cannot convert value 'Foothills' of type Text to type True/False.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'Foothills' is one of my District names and the name of the District of the first store on the data pull so appears it is getting hung up right away.&amp;nbsp; Any thoughts?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Nov 2019 18:04:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/837749#M6263</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-05T18:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: Count Months Above Target with Hierarchy Roll Up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/837772#M6266</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&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;what about modifying as follow:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;MonthsAtTgt = 

VAR forStore = calculate(distinctcount('Table'[Month]),filter('Table','Table'[% to Target]&amp;gt;=1))
VAR forDistrict = calculate(distinctcount('Table'[Month]),'Table'[% to Target]&amp;gt;=1,ALL('Table'[Store]) )
VAR forMarket = calculate(distinctcount('Table'[Month]),'Table'[% to Target]&amp;gt;=1,ALL('Table'[Store]), 'Table'[District]) )

RETURN IF(ISFILTERED('Table'[Market]),
        forMarket ,
        IF(ISFILTERED('Table'[District]),
        forDistrict ,
        forStore ) )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it still doesn't work, could you share an example of the Power BI file?&lt;/P&gt;&lt;P&gt;That would make it a lot easier to find the problem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LC&lt;/P&gt;&lt;P&gt;Interested in Power BI and DAX templates? Check out my blog at &lt;A href="http://www.finance-bi.com" target="_blank"&gt;www.finance-bi.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Nov 2019 18:36:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/837772#M6266</guid>
      <dc:creator>lc_finance</dc:creator>
      <dc:date>2019-11-05T18:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Count Months Above Target with Hierarchy Roll Up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/837831#M6273</link>
      <description>&lt;P&gt;Here is a link to a sample file&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="Sample File" href="https://1drv.ms/u/s!AqL1thqMq4QImxXpRRQ-_Ao7ON-6?e=8vKYAg" target="_blank" rel="noopener"&gt;&lt;FONT&gt;https://1drv.ms/u/s!AqL1thqMq4QImxXpRRQ-_Ao7ON-6?e=8vKYAg&lt;/FONT&gt;&amp;nbsp;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 05 Nov 2019 19:56:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/837831#M6273</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-05T19:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: Count Months Above Target with Hierarchy Roll Up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/839195#M6323</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&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;you can find my updated solution &lt;A href="https://finance-bi.com/wp-content/uploads/2019/11/Count-Months-above-target.pbix_.zip" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Based on your data model I fixed the&amp;nbsp;&lt;SPAN&gt;MonthsatAccTgt measure and I also fixed a problem in the % to Target measure.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can find the new measures here:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;% to Target = 
VAR forStore = DIVIDE(SUM('Acc Performance'[Acc Actual]),sum(Quota[Target]))
VAR forDistrict = calculate(DIVIDE(SUM('Acc Performance'[Acc Actual]),sum(Quota[Target])),all('Hierarchy'[Store]))
VAR forMarket = calculate(DIVIDE(SUM('Acc Performance'[Acc Actual]),sum(Quota[Target])),all('Hierarchy'[Store],'Hierarchy'[District]))

Return IF(ISFILTERED('Hierarchy'[Store]),forStore,if(ISfiltered('Hierarchy'[District]),forDistrict,forMarket))&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;MonthsatAccTgt = sumx(values('Month'[Month]),IF([% to Target]&amp;gt;=1,1,0))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The MonthsatAccTgt can be very easy, as all the complicated work is done by the % to Target measure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if this helps you,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LC&lt;/P&gt;&lt;P&gt;Interested in Power BI and DAX templates? Check out my blog at &lt;A href="http://www.finance-bi.com" target="_blank" rel="noopener"&gt;www.finance-bi.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2019 23:21:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/839195#M6323</guid>
      <dc:creator>lc_finance</dc:creator>
      <dc:date>2019-11-06T23:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: Count Months Above Target with Hierarchy Roll Up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/839901#M6342</link>
      <description>&lt;P&gt;Works like a charm, thank you &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="176844" data-lia-user-login="lc_finance" class="lia-mention lia-mention-user"&gt;lc_finance&lt;/a&gt;!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One follow-up question to this.&amp;nbsp; The count works great as I filter using my Matrix visual in my main report - clicking on a Market/District/Store in the Matrix filters the MonthsatAccTgt measure to show how many months that hierarchy level has been above target.&amp;nbsp; However, if I filter to a specific Store/District using the Filter Pane (without clicking on it in the Matrix) the MonthsatAccTgt measure does not filter to the correct number.&amp;nbsp; Is this how that measure is supposed to work with this DAX expression, or is there one additional piece I am missing?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2019 13:34:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/839901#M6342</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-07T13:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: Count Months Above Target with Hierarchy Roll Up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/841149#M6367</link>
      <description>&lt;P&gt;Figured out how the Matrix was impacting this.&amp;nbsp; Thanks again,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="176844" data-lia-user-login="lc_finance" class="lia-mention lia-mention-user"&gt;lc_finance&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 15:48:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/841149#M6367</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-08T15:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: Count Months Above Target with Hierarchy Roll Up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/841823#M6412</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&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;Sorry for the late reply, I am glad you found a solution for it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do not hesitate if you have any more questions,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LC&lt;/P&gt;</description>
      <pubDate>Sun, 10 Nov 2019 20:49:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Months-Above-Target-with-Hierarchy-Roll-Up/m-p/841823#M6412</guid>
      <dc:creator>lc_finance</dc:creator>
      <dc:date>2019-11-10T20:49:08Z</dc:date>
    </item>
  </channel>
</rss>

