<?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: Top N Rank Dynamic Filter Using Field Parameters in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3449843#M131376</link>
    <description>&lt;P&gt;You're nearly there.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;var m = selectedvalue('Date-Reporting Dates'[Reporting Date])   
return CALCULATE(
            RANKX(
        ALLSELECTED('[Dashboard]'[Primary Root Cause Level 0]),
        [Count], , DESC),
        'Date-Reporting Dates'[Reporting Date]=m)
    )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 27 Sep 2023 13:20:58 GMT</pubDate>
    <dc:creator>lbendlin</dc:creator>
    <dc:date>2023-09-27T13:20:58Z</dc:date>
    <item>
      <title>Top N Rank Dynamic Filter Using Field Parameters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3445132#M131047</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First time poster here. I've tried searching for answers all over but don't seem to be able to find the exact answer I was looking for. So hoping the DAX gurus here can pass provide some guidance.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to create a dynamic Top N numeric parameter filter that filters for the Top N for each category, which is determined by field parameter, similar to the one shown in &lt;A href="https://www.youtube.com/watch?v=YFl4kb_06aM" target="_self"&gt;this video&lt;/A&gt;. What I want this to look like is as follows. These were created using the Top N filter in the filter pane (selected as top 5), by filtering either Primary Root Cause Level 0 or Primary Root Cause Level 1.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Here are the parameters that I have put in place:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've followed the video and created this Rank formula in DAX:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Rank =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SWITCH&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;TRUE&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;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(ParameterDimension&lt;/SPAN&gt;&lt;SPAN&gt;[ParameterDimension Fields]&lt;/SPAN&gt;&lt;SPAN&gt;)=&lt;/SPAN&gt;&lt;SPAN&gt;"'[Dashboard]'[Primary Root Cause Level 0]"&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;RANKX&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;ALLSELECTED&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'[Dashboard]'&lt;/SPAN&gt;&lt;SPAN&gt;[Primary Root Cause Level 0]&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;[Count]&lt;/SPAN&gt;&lt;SPAN&gt;, , &lt;/SPAN&gt;&lt;SPAN&gt;DESC&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;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(ParameterDimension[ParameterDimension Fields]&lt;/SPAN&gt;&lt;SPAN&gt;)=&lt;/SPAN&gt;&lt;SPAN&gt;"'[Dashboard]'[Primary Root Cause Level 1]"&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;RANKX&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;ALLSELECTED&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'[Dashboard]'&lt;/SPAN&gt;&lt;SPAN&gt;[Primary Root Cause Level 1]&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;[Count]&lt;/SPAN&gt;&lt;SPAN&gt;, ,&lt;/SPAN&gt;&lt;SPAN&gt;DESC&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;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;However I notice that the Rank DAX formula filters for the Top N in the context of each month, rather than the whole period shown in the chart.&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I write the correct DAX so that it replicates the behaviour of the static Top N filter dynamically?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for the long winded post. Hope I've illustrated my question clearly. Appreciate any help available.&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 25 Sep 2023 04:26:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3445132#M131047</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-09-25T04:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: Top N Rank Dynamic Filter Using Field Parameters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3448353#M131281</link>
      <description>&lt;P&gt;Surround your RANKX statements with CALCULATE&amp;nbsp; and add the Month filter modifier.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2023 17:38:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3448353#M131281</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2023-09-26T17:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: Top N Rank Dynamic Filter Using Field Parameters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3448724#M131307</link>
      <description>&lt;P&gt;Hi Ibendlin, thanks for your response.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So this is what I've done, but it's not changed anything to my result. I'm pretty sure there's something that I'm not doing right.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&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; &lt;/SPAN&gt;&lt;SPAN&gt;RANKX&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;ALLSELECTED&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'[Dashboard]'&lt;/SPAN&gt;&lt;SPAN&gt;[Primary Root Cause Level 0]&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;[Count]&lt;/SPAN&gt;&lt;SPAN&gt;, , &lt;/SPAN&gt;&lt;SPAN&gt;DESC&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; &lt;/SPAN&gt;&lt;SPAN&gt;FILTER&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;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Date-Reporting Dates'&lt;/SPAN&gt;&lt;SPAN&gt;[Reporting Date]&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;'Date-Reporting Dates'&lt;/SPAN&gt;&lt;SPAN&gt;[Reporting Date]&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;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;'Date-Reporting Dates'&lt;/SPAN&gt;&lt;SPAN&gt;[Reporting Date] is the X-axis.&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I know I need to create the correct context for the rank formula, but I just don't know how to do it. Appreciate some further guidance on this.&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 27 Sep 2023 00:36:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3448724#M131307</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-09-27T00:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Top N Rank Dynamic Filter Using Field Parameters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3449843#M131376</link>
      <description>&lt;P&gt;You're nearly there.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;var m = selectedvalue('Date-Reporting Dates'[Reporting Date])   
return CALCULATE(
            RANKX(
        ALLSELECTED('[Dashboard]'[Primary Root Cause Level 0]),
        [Count], , DESC),
        'Date-Reporting Dates'[Reporting Date]=m)
    )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Sep 2023 13:20:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3449843#M131376</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2023-09-27T13:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: Top N Rank Dynamic Filter Using Field Parameters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3450760#M131438</link>
      <description>&lt;P&gt;Thanks Ibendlin. I've updated the DAX, but nothing appears to have changed. Here's the full formula.&lt;/P&gt;&lt;DIV&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&amp;nbsp;&lt;/BLOCKQUOTE&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Rank =
VAR _m=SELECTEDVALUE('Date-Reporting Dates'[Reporting Date])
Return
SWITCH(
    TRUE(),
    SELECTEDVALUE(pBreachesField[pBreachesField Fields])="'[Dashboard] Incidents'[Primary Root Cause Level 0]",
    CALCULATE(
            RANKX(
                ALLSELECTED('[Dashboard] Incidents'[Primary Root Cause Level 0]),
                [Count], , DESC),
                'Date-Reporting Dates'[Reporting Date]=_m)
        ,
    SELECTEDVALUE(pBreachesField[pBreachesField Fields])="'[Dashboard] Incidents'[Primary Root Cause Level 1]",
    CALCULATE(
        RANKX(
            ALLSELECTED('[Dashboard] Incidents'[Primary Root Cause Level 1]),
            [Count], ,DESC),
            'Date-Reporting Dates'[Reporting Date]=_m
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it helps, this is the Dynamic Filter formula used to filter the chart.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Dynamic Filter Top N = 
VAR _selectednumber = SELECTEDVALUE('Top N'[Top N])
return 
IF(
    ISFILTERED('Top N'),
INT(
    [Rank] &amp;lt;= _selectednumber
),1
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2023 01:27:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3450760#M131438</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-09-28T01:27:16Z</dc:date>
    </item>
    <item>
      <title>Re: Top N Rank Dynamic Filter Using Field Parameters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3450767#M131439</link>
      <description>&lt;P&gt;Can you post a sample .pbix ?&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;If you are unsure how to do that please refer to &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;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2023 01:32:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3450767#M131439</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2023-09-28T01:32:02Z</dc:date>
    </item>
    <item>
      <title>Re: Top N Rank Dynamic Filter Using Field Parameters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3452815#M131557</link>
      <description>&lt;P&gt;&lt;A href="https://mlcinsurance.sharepoint.com/:u:/r/sites/RiskStrategyGovernanceandInsights/Shared%20Documents/General/Power%20BI/Sample-Rank_DAX.pbix?csf=1&amp;amp;web=1&amp;amp;e=eB7rNb" target="_self"&gt;Sample pbix&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not sure if this link will work given that it's a work OneDrive link.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2023 03:55:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3452815#M131557</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-09-29T03:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: Top N Rank Dynamic Filter Using Field Parameters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3453674#M131597</link>
      <description>&lt;P&gt;close but it requires authentication.&amp;nbsp; see if you can find a way to share publicly.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2023 14:18:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3453674#M131597</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2023-09-29T14:18:23Z</dc:date>
    </item>
    <item>
      <title>Re: Top N Rank Dynamic Filter Using Field Parameters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3458703#M131872</link>
      <description>&lt;P&gt;Thanks mate. I'll have to check with my work admins to see how I can do that.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2023 03:49:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3458703#M131872</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-10-04T03:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: Top N Rank Dynamic Filter Using Field Parameters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3529750#M135628</link>
      <description>&lt;P&gt;Hi there, bumping this again as I still haven't found a solution to this problem.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately it doesn't appear possible for me to upload the workbook publicly. Perhaps I can illustrate the problem via the matrix visual.&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;Essentially I want to rank the Total in the bottom row for each category (Data, People etc.), but the Rank calculation is ranking in the context of each month (see Rank columns). Hoping to get the solution to his last missing piece to the calculation.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2023 00:56:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Top-N-Rank-Dynamic-Filter-Using-Field-Parameters/m-p/3529750#M135628</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-11-13T00:56:35Z</dc:date>
    </item>
  </channel>
</rss>

