<?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: Help with calculating an average daily % of lion behavior in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-calculating-an-average-daily-of-lion-behavior/m-p/4908089#M186548</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1284106" data-lia-user-login="KStout" class="lia-mention lia-mention-user"&gt;KStout&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;try below measure:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DAX Test1 Average % Each Day =
AVERAGEX(
    CROSSJOIN(
        SUMMARIZE('Keeper Data',
            'Keeper Data'[Date],
            'Keeper Data'[Individual]
        ),
        VALUES('Keeper Data'[Behavior])
    ),
    VAR _Date = 'Keeper Data'[Date]
    VAR _Individual = 'Keeper Data'[Individual]
    VAR _Behavior = 'Keeper Data'[Behavior]
    RETURN
        DIVIDE(
            CALCULATE(
                SUM('Keeper Data'[BCOUNT]),
                'Keeper Data'[Date] = _Date,
                'Keeper Data'[Individual] = _Individual,
                'Keeper Data'[Behavior] = _Behavior
            ),
            CALCULATE(
                SUM('Keeper Data'[BCOUNT]),
                'Keeper Data'[Date] = _Date,
                'Keeper Data'[Individual] = _Individual,
                ALL('Keeper Data'[Behavior])
            ),
            0
        )
)&lt;/LI-CODE&gt;&lt;P&gt;Please give kudos or mark it as solution once confirmed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Praful&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 24 Dec 2025 09:09:53 GMT</pubDate>
    <dc:creator>Praful_Potphode</dc:creator>
    <dc:date>2025-12-24T09:09:53Z</dc:date>
    <item>
      <title>Help with calculating an average daily % of lion behavior</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-calculating-an-average-daily-of-lion-behavior/m-p/4907236#M186531</link>
      <description>&lt;P&gt;Help please :), I have been at this for ages and cannot get the correct answer with DAX without first creating a static table.&amp;nbsp;&lt;BR /&gt;&lt;STRONG&gt;&lt;BR /&gt;I am after a mean daily average that must account for days with 0 values. Please see the code in the picture below or refer to the botom of the text box.&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;If I use [Date] as a small multiple and I look at the calculations day by day, they match for both the static table and the DAX measure which uses a virtual table. However, the values differ from the verified answers when I take out the date as a small multiple. Can someone help me to figure out what is going wrong?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;[BCount] is simply a colum that contains 1's - so that i can just use sum functions instead of row counts. I need (the total behaviors per category per lion each day) / (the total number of behavior including all categories, per lion, per day) and I need that to coalease to a 0 value if the behavior category was not observed at all that day - hence the necessity for a crossjoin.&amp;nbsp; Then I need it to average all those values out to get mean daily % of each behavior observed.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Here is a screenshot of the original data format - 'Keeper Data'&lt;img /&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;And here is a screenshot of the static table I created with PowerQuery to get the correst answers - I can also create the same static table with DAX. But I need the table to be filterable and dynamic. It cannot be static becuase I need to be able to filter by values more granular than the date.&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;DAX Test1 Average % Each Day =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;dailys&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;COALESCE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Keeper Data'&lt;/SPAN&gt;&lt;SPAN&gt;[BCOUNT]&lt;/SPAN&gt;&lt;SPAN&gt;)+&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;)/&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Keeper Data'&lt;/SPAN&gt;&lt;SPAN&gt;[BCOUNT]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Keeper Data'&lt;/SPAN&gt;&lt;SPAN&gt;[Behavior]&lt;/SPAN&gt;&lt;SPAN&gt;)), &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;AVERAGEX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CROSSJOIN&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SUMMARIZE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Keeper Data'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'Keeper Data'&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'Keeper Data'&lt;/SPAN&gt;&lt;SPAN&gt;[Individual]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Keeper Data'&lt;/SPAN&gt;&lt;SPAN&gt;[Behavior]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; , (&lt;/SPAN&gt;&lt;SPAN&gt;dailys&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 22 Dec 2025 20:27:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-calculating-an-average-daily-of-lion-behavior/m-p/4907236#M186531</guid>
      <dc:creator>KStout</dc:creator>
      <dc:date>2025-12-22T20:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: Help with calculating an average daily % of lion behavior</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-calculating-an-average-daily-of-lion-behavior/m-p/4907245#M186532</link>
      <description>&lt;P&gt;Please provide sample data that covers your issue or question &lt;STRONG&gt;completely&lt;/STRONG&gt;, in a &lt;STRONG&gt;usable&lt;/STRONG&gt; format (not as a screenshot).&lt;BR /&gt;Do not include sensitive information. Do not include anything that is unrelated to the issue or question. &lt;BR /&gt;Please show the expected outcome based on the sample data you provided. &lt;BR /&gt;&lt;BR /&gt;Need help uploading data? &lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216&lt;/A&gt; &lt;BR /&gt;Want faster answers? &lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Dec 2025 21:32:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-calculating-an-average-daily-of-lion-behavior/m-p/4907245#M186532</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-12-22T21:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: Help with calculating an average daily % of lion behavior</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-calculating-an-average-daily-of-lion-behavior/m-p/4907285#M186533</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1284106" data-lia-user-login="KStout" class="lia-mention lia-mention-user"&gt;KStout&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You need to push the CALCULATE expression to the inside of the AVERAGEX iteration in ordert to force context transition&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DAX Test1 Average % Each Day =&lt;BR /&gt;AVERAGEX (&lt;BR /&gt;CROSSJOIN (&lt;BR /&gt;SUMMARIZE ( 'Keeper Data', 'Keeper Data'[Date], 'Keeper Data'[Individual] ),&lt;BR /&gt;VALUES ( 'Keeper Data'[Behavior] )&lt;BR /&gt;),&lt;BR /&gt;DIVIDE (&lt;BR /&gt;CALCULATE ( SUM ( 'Keeper Data'[BCOUNT] ) ) + 0,&lt;BR /&gt;CALCULATE ( SUM ( 'Keeper Data'[BCOUNT] ), ALL ( 'Keeper Data'[Behavior] ) )&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Tue, 23 Dec 2025 02:59:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-calculating-an-average-daily-of-lion-behavior/m-p/4907285#M186533</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2025-12-23T02:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: Help with calculating an average daily % of lion behavior</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-calculating-an-average-daily-of-lion-behavior/m-p/4907632#M186543</link>
      <description>&lt;P&gt;this still unforntunately leaves days unaccounted for. Maybe I will try it again in another project becuase nothing seems to work.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Dec 2025 16:08:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-calculating-an-average-daily-of-lion-behavior/m-p/4907632#M186543</guid>
      <dc:creator>KStout</dc:creator>
      <dc:date>2025-12-23T16:08:45Z</dc:date>
    </item>
    <item>
      <title>Re: Help with calculating an average daily % of lion behavior</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-calculating-an-average-daily-of-lion-behavior/m-p/4908089#M186548</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1284106" data-lia-user-login="KStout" class="lia-mention lia-mention-user"&gt;KStout&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;try below measure:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DAX Test1 Average % Each Day =
AVERAGEX(
    CROSSJOIN(
        SUMMARIZE('Keeper Data',
            'Keeper Data'[Date],
            'Keeper Data'[Individual]
        ),
        VALUES('Keeper Data'[Behavior])
    ),
    VAR _Date = 'Keeper Data'[Date]
    VAR _Individual = 'Keeper Data'[Individual]
    VAR _Behavior = 'Keeper Data'[Behavior]
    RETURN
        DIVIDE(
            CALCULATE(
                SUM('Keeper Data'[BCOUNT]),
                'Keeper Data'[Date] = _Date,
                'Keeper Data'[Individual] = _Individual,
                'Keeper Data'[Behavior] = _Behavior
            ),
            CALCULATE(
                SUM('Keeper Data'[BCOUNT]),
                'Keeper Data'[Date] = _Date,
                'Keeper Data'[Individual] = _Individual,
                ALL('Keeper Data'[Behavior])
            ),
            0
        )
)&lt;/LI-CODE&gt;&lt;P&gt;Please give kudos or mark it as solution once confirmed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Praful&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Dec 2025 09:09:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-calculating-an-average-daily-of-lion-behavior/m-p/4908089#M186548</guid>
      <dc:creator>Praful_Potphode</dc:creator>
      <dc:date>2025-12-24T09:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: Help with calculating an average daily % of lion behavior</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-calculating-an-average-daily-of-lion-behavior/m-p/4908763#M186560</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1284106" data-lia-user-login="KStout" class="lia-mention lia-mention-user"&gt;KStout&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for reaching out to the Microsoft Community Forum.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="100342" data-lia-user-login="lbendlin" class="lia-mention lia-mention-user"&gt;lbendlin&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp; and&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1261729" data-lia-user-login="Praful_Potphode" class="lia-mention lia-mention-user"&gt;Praful_Potphode&lt;/a&gt;&amp;nbsp;, Thank you for your prompt responses.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1284106" data-lia-user-login="KStout" class="lia-mention lia-mention-user"&gt;KStout&lt;/a&gt;&amp;nbsp;, Please try below measures.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Daily Behavior Count =&lt;BR /&gt;SUM ( 'Keeper Data'[BCOUNT] )&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Daily Total Behaviors =&lt;BR /&gt;CALCULATE (&lt;BR /&gt;[Daily Behavior Count],&lt;BR /&gt;REMOVEFILTERS ( 'Keeper Data'[Behavior] )&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Daily Behavior % =&lt;BR /&gt;DIVIDE (&lt;BR /&gt;[Daily Behavior Count],&lt;BR /&gt;[Daily Total Behaviors],&lt;BR /&gt;0&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Mean Daily Behavior % =&lt;BR /&gt;AVERAGEX (&lt;BR /&gt;CROSSJOIN (&lt;BR /&gt;SUMMARIZE (&lt;BR /&gt;'Keeper Data',&lt;BR /&gt;'Keeper Data'[Date],&lt;BR /&gt;'Keeper Data'[Individual]&lt;BR /&gt;),&lt;BR /&gt;VALUES ( 'Keeper Data'[Behavior] )&lt;BR /&gt;),&lt;BR /&gt;CALCULATE ( [Daily Behavior %] )&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this information helps. Please do let us know if you have any further queries.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Dinesh&lt;/P&gt;</description>
      <pubDate>Fri, 26 Dec 2025 07:01:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-calculating-an-average-daily-of-lion-behavior/m-p/4908763#M186560</guid>
      <dc:creator>v-dineshya</dc:creator>
      <dc:date>2025-12-26T07:01:20Z</dc:date>
    </item>
    <item>
      <title>Re: Help with calculating an average daily % of lion behavior</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-calculating-an-average-daily-of-lion-behavior/m-p/4910132#M186590</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1284106" data-lia-user-login="KStout" class="lia-mention lia-mention-user"&gt;KStout&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;We haven’t heard from you on the last response and was just checking back to see if you have a resolution yet. And, if you have any further query do let us know.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Dinesh&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 05:02:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-calculating-an-average-daily-of-lion-behavior/m-p/4910132#M186590</guid>
      <dc:creator>v-dineshya</dc:creator>
      <dc:date>2025-12-30T05:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: Help with calculating an average daily % of lion behavior</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-calculating-an-average-daily-of-lion-behavior/m-p/4911358#M186608</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1284106" target="_blank"&gt;@KStout&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;We haven’t heard from you on the last response and was just checking back to see if you have a resolution yet. And, if you have any further query do let us know.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Dinesh&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jan 2026 05:27:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-calculating-an-average-daily-of-lion-behavior/m-p/4911358#M186608</guid>
      <dc:creator>v-dineshya</dc:creator>
      <dc:date>2026-01-02T05:27:30Z</dc:date>
    </item>
  </channel>
</rss>

