<?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: Summing the Maximum by Category within Month in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-the-Maximum-by-Category-within-Month/m-p/3548434#M136472</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="592522" data-lia-user-login="gmatt98" class="lia-mention lia-mention-user"&gt;gmatt98&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You can try the following methods&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;BR /&gt;Measure:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Maxitem = 
CALCULATE(MAX('Table'[Items]),ALLEXCEPT('Table','Table'[Brand],'Table'[Account/Month Key],'Table'[Region],'Table'[Division]))&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Result = 
Var _table=SUMMARIZE('Table','Table'[Division],'Table'[Region],'Table'[Account/Month Key],'Table'[Brand],"Maxitem",[Maxitem])
Return
SUMX(_table,[Maxitem])&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Is this the result you expect?&lt;/SPAN&gt; &lt;SPAN&gt;Please see the attached document.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Community Support Team _Charlotte&lt;/P&gt;
&lt;P&gt;If this post&lt;SPAN&gt;&amp;nbsp;&lt;STRONG&gt;helps, then please consider&amp;nbsp;&lt;EM&gt;Accept it as the solution&amp;nbsp;to help the other members find it more quickly.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 23 Nov 2023 07:44:39 GMT</pubDate>
    <dc:creator>v-zhangti</dc:creator>
    <dc:date>2023-11-23T07:44:39Z</dc:date>
    <item>
      <title>Summing the Maximum by Category within Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-the-Maximum-by-Category-within-Month/m-p/3543264#M136210</link>
      <description>&lt;P&gt;I am trying to return the number of items in each month and am having trouble returning the intended result. If there are multiple surveys in one month, I want to find the maximum items of each brand in that month. Using the example below, for Brand 2, my maximum should be 10 (from the survey taken on 11/9/2023). I also need the measures to sum correctly to an account level -- for the example below, I want to get 85 items (11/6 survey for Brand A, 11/9 survey for Brand B, 11/9 survey for Brand C, 11/6 survey for Brand D).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know WHY it's not returning the right result, which I'll try to describe below, but can't get around how to fix the DAX to make it work correctly! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am working with a table built out the following way:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Account Name&lt;/TD&gt;&lt;TD&gt;Account/Month Key&lt;/TD&gt;&lt;TD&gt;Survey Date&lt;/TD&gt;&lt;TD&gt;Brand&lt;/TD&gt;&lt;TD&gt;Items&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Account 1&lt;/TD&gt;&lt;TD&gt;Account1_202311&lt;/TD&gt;&lt;TD&gt;11/6/2023&lt;/TD&gt;&lt;TD&gt;Brand A&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;25&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Account 1&lt;/TD&gt;&lt;TD&gt;Account1_202311&lt;/TD&gt;&lt;TD&gt;11/6/2023&lt;/TD&gt;&lt;TD&gt;Brand B&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;5&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Account 1&lt;/TD&gt;&lt;TD&gt;Account1_202311&lt;/TD&gt;&lt;TD&gt;11/9/2023&lt;/TD&gt;&lt;TD&gt;Brand B&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;10&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Account 1&lt;/TD&gt;&lt;TD&gt;Account1_202311&lt;/TD&gt;&lt;TD&gt;11/9/2023&lt;/TD&gt;&lt;TD&gt;Brand C&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;25&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Account 1&lt;/TD&gt;&lt;TD&gt;Account1_202311&lt;/TD&gt;&lt;TD&gt;11/6/2023&lt;/TD&gt;&lt;TD&gt;Brand D&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;25&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Despite working correctly when compiling to an account/brand level, I get the following (incorrect) total results when looking at the complete Account 1 level because the meaures only look at the 11/6 surveys as a WHOLE when finding the total (so incorrectly taking the 11/6 survey for Brand A, 11/6 survey for Brand B, and 11/6 survey for Brand D, or 25+5+25):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;working correctly at account and brand level --&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Account Name&lt;/TD&gt;&lt;TD&gt;Account/Month Key&lt;/TD&gt;&lt;TD&gt;Brand&lt;/TD&gt;&lt;TD&gt;Items (Correct)&lt;/TD&gt;&lt;TD&gt;&lt;EM&gt;Items from 11/6 "used" in next table to calc the account level measure (incorrectly)&lt;/EM&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Account 1&lt;/TD&gt;&lt;TD&gt;Account1_202311&lt;/TD&gt;&lt;TD&gt;Brand A&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;25&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;25&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Account 1&lt;/TD&gt;&lt;TD&gt;Account1_202311&lt;/TD&gt;&lt;TD&gt;Brand B&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;10&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;5&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Account 1&lt;/TD&gt;&lt;TD&gt;Account1_202311&lt;/TD&gt;&lt;TD&gt;Brand C&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;25&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;0&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Account 1&lt;/TD&gt;&lt;TD&gt;Account1_202311&lt;/TD&gt;&lt;TD&gt;Brand D&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;25&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;25&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;EM&gt;incorrect at account level:&lt;/EM&gt;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Account Name&lt;/TD&gt;&lt;TD&gt;Account/Month Key&lt;/TD&gt;&lt;TD&gt;Intended Result:&lt;/TD&gt;&lt;TD&gt;&lt;EM&gt;Incorrect Result:&lt;/EM&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Account 1&lt;/TD&gt;&lt;TD&gt;Account1_202311&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;85&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;55&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My measure is as follows:&lt;/P&gt;&lt;P&gt;Total Items =&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt; &lt;SPAN&gt;(&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;VALUES&lt;/SPAN&gt; &lt;SPAN&gt;(&lt;/SPAN&gt;&amp;nbsp;Table1[Account/Month Key]&amp;nbsp;&lt;SPAN&gt;)&lt;/SPAN&gt;,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;MAXX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;(Table1[Survey Date]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SUM&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Table1[Items]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt; &lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I know the Table1[Survey Date] column is causing the sumx iteration to happen over survey date 11/6 vs. 11/9, and finds that the total of 11/6 surveys (55) is greater than the total of 11/9 surveys (35), and thus returns 55 as the total. I can't figure out how to get the sumx iteration to ignore the previously designated survey date maxiumum!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It is probably a silly error that I am making, but I am stumped &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Any help is greatly appreciated!!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Nov 2023 21:45:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-the-Maximum-by-Category-within-Month/m-p/3543264#M136210</guid>
      <dc:creator>gmatt98</dc:creator>
      <dc:date>2023-11-20T21:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: Summing the Maximum by Category within Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-the-Maximum-by-Category-within-Month/m-p/3543698#M136230</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.&lt;/P&gt;
&lt;P&gt;Please check the below picture and the attached pbix file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/dax/index-function-dax?wt.mc_id=DP-MVP-5004989" target="_blank"&gt;INDEX function (DAX) - DAX | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Expected result measure: =
SUMX (
    VALUES ( Brand[Brand] ),
    CALCULATE (
        SUM ( Data[Items] ),
        INDEX (
            1,
            SUMMARIZE (
                Data,
                'Calendar'[Year-Month sort],
                'Calendar'[Date],
                Data[Account Name],
                Data[Account/Month Key]
            ),
            ORDERBY ( CALCULATE ( SUM ( Data[Items] ) ), DESC ),
            ,
            PARTITIONBY ( 'Calendar'[Year-Month sort] )
        )
    )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2023 04:13:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-the-Maximum-by-Category-within-Month/m-p/3543698#M136230</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2023-11-21T04:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Summing the Maximum by Category within Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-the-Maximum-by-Category-within-Month/m-p/3545120#M136312</link>
      <description>&lt;P&gt;This answer works perfectly for my question as I've written it, so thank you!&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, when I try to roll up the measure into higher levels of the account hierarchy, it no longer correctly totals the number of items. How can I adapt your measure to account for the needs of this roll-up?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Assume I need to be able to roll up to Region &amp;amp; Division using the following (example) account hierarchy architecture:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Division&lt;/TD&gt;&lt;TD&gt;Region&lt;/TD&gt;&lt;TD&gt;Account&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Division 1&lt;/TD&gt;&lt;TD&gt;Region A&lt;/TD&gt;&lt;TD&gt;Account 1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Division 1&lt;/TD&gt;&lt;TD&gt;Region A&lt;/TD&gt;&lt;TD&gt;Account 2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Division 1&lt;/TD&gt;&lt;TD&gt;Region B&lt;/TD&gt;&lt;TD&gt;Account 3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Division 1&lt;/TD&gt;&lt;TD&gt;Region B&lt;/TD&gt;&lt;TD&gt;Account 4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Division 2&lt;/TD&gt;&lt;TD&gt;Region C&lt;/TD&gt;&lt;TD&gt;Account 5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Division 2&lt;/TD&gt;&lt;TD&gt;Region C&lt;/TD&gt;&lt;TD&gt;Account 6&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Tue, 21 Nov 2023 15:44:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-the-Maximum-by-Category-within-Month/m-p/3545120#M136312</guid>
      <dc:creator>gmatt98</dc:creator>
      <dc:date>2023-11-21T15:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: Summing the Maximum by Category within Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-the-Maximum-by-Category-within-Month/m-p/3545134#M136313</link>
      <description>&lt;P&gt;This answer works perfectly for my question as I've written it, so thank you!&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, when I try to roll up the measure into higher levels of the account hierarchy, it no longer correctly totals the number of items. How can I adapt your measure to account for the needs of this roll-up?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Assume I need to be able to roll up to Region &amp;amp; Division using the following (example) account hierarchy architecture:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Division&lt;/TD&gt;&lt;TD&gt;Region&lt;/TD&gt;&lt;TD&gt;Account&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Division 1&lt;/TD&gt;&lt;TD&gt;Region A&lt;/TD&gt;&lt;TD&gt;Account 1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Division 1&lt;/TD&gt;&lt;TD&gt;Region A&lt;/TD&gt;&lt;TD&gt;Account 2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Division 1&lt;/TD&gt;&lt;TD&gt;Region B&lt;/TD&gt;&lt;TD&gt;Account 3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Division 1&lt;/TD&gt;&lt;TD&gt;Region B&lt;/TD&gt;&lt;TD&gt;Account 4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Division 2&lt;/TD&gt;&lt;TD&gt;Region C&lt;/TD&gt;&lt;TD&gt;Account 5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Division 2&lt;/TD&gt;&lt;TD&gt;Region C&lt;/TD&gt;&lt;TD&gt;Account 6&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Tue, 21 Nov 2023 15:51:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-the-Maximum-by-Category-within-Month/m-p/3545134#M136313</guid>
      <dc:creator>gmatt98</dc:creator>
      <dc:date>2023-11-21T15:51:11Z</dc:date>
    </item>
    <item>
      <title>Re: Summing the Maximum by Category within Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-the-Maximum-by-Category-within-Month/m-p/3548434#M136472</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="592522" data-lia-user-login="gmatt98" class="lia-mention lia-mention-user"&gt;gmatt98&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You can try the following methods&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;BR /&gt;Measure:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Maxitem = 
CALCULATE(MAX('Table'[Items]),ALLEXCEPT('Table','Table'[Brand],'Table'[Account/Month Key],'Table'[Region],'Table'[Division]))&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Result = 
Var _table=SUMMARIZE('Table','Table'[Division],'Table'[Region],'Table'[Account/Month Key],'Table'[Brand],"Maxitem",[Maxitem])
Return
SUMX(_table,[Maxitem])&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Is this the result you expect?&lt;/SPAN&gt; &lt;SPAN&gt;Please see the attached document.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Community Support Team _Charlotte&lt;/P&gt;
&lt;P&gt;If this post&lt;SPAN&gt;&amp;nbsp;&lt;STRONG&gt;helps, then please consider&amp;nbsp;&lt;EM&gt;Accept it as the solution&amp;nbsp;to help the other members find it more quickly.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2023 07:44:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-the-Maximum-by-Category-within-Month/m-p/3548434#M136472</guid>
      <dc:creator>v-zhangti</dc:creator>
      <dc:date>2023-11-23T07:44:39Z</dc:date>
    </item>
  </channel>
</rss>

