<?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 segment with N first line from a table report order bye amount value ? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3934690#M153063</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="150430" data-lia-user-login="Lefuneste57" class="lia-mention lia-mention-user"&gt;Lefuneste57&lt;/a&gt;&amp;nbsp;- Just to clarify, my solution will work for you &amp;amp; it is dynamic (because it uses a measure), so the ranking will be re-calculated according to any filters you use on the page.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But you will need to use the measure below in any visual that you want to see this behaviour. There is no need to use a page filter because the measure handles the visual filtering.&amp;nbsp;So if you want to filter an entire page, place the measure in every visual.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It works by only displaying the amount value when the rank number is lower than or equal to the number in the slicer. The slicer is created using these instructions:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/power-bi/transform-model/desktop-what-if," target="_blank" rel="noopener nofollow noreferrer"&gt;https://learn.microsoft.com/en-us/power-bi/transform-model/desktop-what-if&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;VAR Number_to_Rank = [Number of Lines (by order amount) Value] // from the numeric range parameter
VAR _amount = [_amount] // sum( amount )
RETURN
    IF (
        RANKX ( ALLSELECTED ( 'Table (6)'[Item], 'Table (6)'[Build] ), [_amount] ) &amp;lt;= Number_to_Rank,
        _amount
    ) // Returns the amount for any items that with a rank within the numbers specified in the Numeric range parameter. &lt;/LI-CODE&gt;&lt;P&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;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 21 May 2024 08:30:51 GMT</pubDate>
    <dc:creator>mark_endicott</dc:creator>
    <dc:date>2024-05-21T08:30:51Z</dc:date>
    <item>
      <title>How to create a segment with N first line from a table report order bye amount value ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3927644#M152794</link>
      <description>&lt;P&gt;&lt;img /&gt;Hi, i have make a report with this data for exemple,i have many segment filter in my page.&lt;/P&gt;&lt;P&gt;So i would know how can i make a segment filter to choose the number of&amp;nbsp; line (order by amount) to display in my report.&lt;/P&gt;&lt;P&gt;I would have the same fonction as in filter pane from Power BI but like a segment.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So in filter Pane is like this :&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And i would a filter segment in my page like this :&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have try with RankX but when i apply other filter it's not match.&lt;/P&gt;&lt;P&gt;I think, the best way is to insert a row with a measure in my display report, who give me a line number order by amount value like this&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and so i can make my slicer filter with this row ..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for helping.&lt;/P&gt;</description>
      <pubDate>Fri, 17 May 2024 13:19:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3927644#M152794</guid>
      <dc:creator>Lefuneste57</dc:creator>
      <dc:date>2024-05-17T13:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a segment with N first line from a table report order bye amount value ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3928086#M152830</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="150430" data-lia-user-login="Lefuneste57" class="lia-mention lia-mention-user"&gt;Lefuneste57&lt;/a&gt;&amp;nbsp;- You can do this with RANKX, and you will also need to create numeric range parameter.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once you have created one of them, you can use the measure it creates as part of another measure that dynamically shows the amount, for the number of items you select. Below is my final measure, I will explain underneath:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;VAR Number_to_Rank = [Number of Lines (by order amount) Value]
VAR _amount = [_amount]
RETURN
    IF (
        RANKX ( ALLSELECTED ( 'Table (6)'[Item], 'Table (6)'[Build] ), [_amount] ) &amp;lt;= Number_to_Rank,
        _amount
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The measure in Number_to_rank is from the numeric range parameter and presents whatever number is selected in the parameter.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The _amount measure is a sum of Amount&lt;/P&gt;&lt;P&gt;The RANKX gives the ranking by _amount for the two colomns in your table, which are inside the ALLSELECTED.&amp;nbsp;&lt;/P&gt;&lt;P&gt;and the IF wrapper shows the amount for any rank that is less than or equal to the number from the Number_to_rank variable.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Please mark this as the solution if it works for you!&lt;/P&gt;</description>
      <pubDate>Fri, 17 May 2024 16:48:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3928086#M152830</guid>
      <dc:creator>mark_endicott</dc:creator>
      <dc:date>2024-05-17T16:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a segment with N first line from a table report order bye amount value ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3928292#M152841</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for your answer but&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;I don't have the [Number of Lines (by order)] column in my report table. I added it in my example to show that i needed to sort by amount but I have to create this column and I don't know how.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;Thanks&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 17 May 2024 18:58:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3928292#M152841</guid>
      <dc:creator>Lefuneste57</dc:creator>
      <dc:date>2024-05-17T18:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a segment with N first line from a table report order bye amount value ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3931034#M152934</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="150430" data-lia-user-login="Lefuneste57" class="lia-mention lia-mention-user"&gt;Lefuneste57&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I understand correctly, you need to create the number order by amount value column and then use it as slicer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to my tests, measure does not work as a slicer. You can create a calculated column, the following steps are for your reference:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a calculated column as follows&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;number order by amount value = RANKX('Table', [amount], , DESC, Dense)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Output:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Yulia Xu&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post &lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider &lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2024 02:45:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3931034#M152934</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-05-20T02:45:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a segment with N first line from a table report order bye amount value ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3931972#M152982</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="150430" data-lia-user-login="Lefuneste57" class="lia-mention lia-mention-user"&gt;Lefuneste57&lt;/a&gt;&amp;nbsp;- Sorry, I thought you may already be able to create a Numeric Range Parameter for the first part of my solution.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here are the instructions,&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/power-bi/transform-model/desktop-what-if," target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/power-bi/transform-model/desktop-what-if,&lt;/A&gt;&amp;nbsp;once you have followed these, you will get a measure in the new parameter table that you can reference in your Dynamic Rank measure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my solutuion, the measure that is auto generated by the parameter is&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;[Number of Lines (by order amount) Value]&lt;/PRE&gt;&lt;P&gt;because I have named the parameter "&lt;SPAN&gt;Number of Lines (by order amount)"&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2024 09:30:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3931972#M152982</guid>
      <dc:creator>mark_endicott</dc:creator>
      <dc:date>2024-05-20T09:30:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a segment with N first line from a table report order bye amount value ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3931983#M152983</link>
      <description>&lt;P&gt;This solution is not optimal, especially if the model is very large.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have suggested using a Measure and a What-If-Parameter (Numeric Range Parameter), because it is optimal and best practice. The measure can be used as a Visual Level filter, the slicer uses the parameter value to control the number of lines the measure shows.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2024 09:30:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3931983#M152983</guid>
      <dc:creator>mark_endicott</dc:creator>
      <dc:date>2024-05-20T09:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a segment with N first line from a table report order bye amount value ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3932246#M152990</link>
      <description>&lt;P&gt;Thank for your reply.&lt;/P&gt;&lt;P&gt;I hope you will find a solution for my problem.&lt;/P&gt;&lt;P&gt;Créate a column is fine but the &lt;SPAN class=""&gt;the problem is that in my report, I have filters on this visual. And when I filter, I lose sorting by amount.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;img /&gt;&lt;/P&gt;&lt;P&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;&amp;nbsp;&lt;/P&gt;&lt;P&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;&lt;SPAN class=""&gt;thanks again for trying to help me&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2024 11:01:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3932246#M152990</guid>
      <dc:creator>Lefuneste57</dc:creator>
      <dc:date>2024-05-20T11:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a segment with N first line from a table report order bye amount value ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3932255#M152991</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="150430" data-lia-user-login="Lefuneste57" class="lia-mention lia-mention-user"&gt;Lefuneste57&lt;/a&gt;&amp;nbsp;- this would not be an issue in my solution becase the ranking would be dynamic.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The ranking that uses a column is static and therefore does not pay attention to filters.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2024 11:05:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3932255#M152991</guid>
      <dc:creator>mark_endicott</dc:creator>
      <dc:date>2024-05-20T11:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a segment with N first line from a table report order bye amount value ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3934386#M153057</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;Thank you for answer,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;It's still a shame that it is not possible to do this type of filter on a page knowing that the filter pane allows it (advanced "N first" filtering).&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 06:47:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3934386#M153057</guid>
      <dc:creator>Lefuneste57</dc:creator>
      <dc:date>2024-05-21T06:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a segment with N first line from a table report order bye amount value ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3934690#M153063</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="150430" data-lia-user-login="Lefuneste57" class="lia-mention lia-mention-user"&gt;Lefuneste57&lt;/a&gt;&amp;nbsp;- Just to clarify, my solution will work for you &amp;amp; it is dynamic (because it uses a measure), so the ranking will be re-calculated according to any filters you use on the page.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But you will need to use the measure below in any visual that you want to see this behaviour. There is no need to use a page filter because the measure handles the visual filtering.&amp;nbsp;So if you want to filter an entire page, place the measure in every visual.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It works by only displaying the amount value when the rank number is lower than or equal to the number in the slicer. The slicer is created using these instructions:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/power-bi/transform-model/desktop-what-if," target="_blank" rel="noopener nofollow noreferrer"&gt;https://learn.microsoft.com/en-us/power-bi/transform-model/desktop-what-if&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;VAR Number_to_Rank = [Number of Lines (by order amount) Value] // from the numeric range parameter
VAR _amount = [_amount] // sum( amount )
RETURN
    IF (
        RANKX ( ALLSELECTED ( 'Table (6)'[Item], 'Table (6)'[Build] ), [_amount] ) &amp;lt;= Number_to_Rank,
        _amount
    ) // Returns the amount for any items that with a rank within the numbers specified in the Numeric range parameter. &lt;/LI-CODE&gt;&lt;P&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;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 08:30:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3934690#M153063</guid>
      <dc:creator>mark_endicott</dc:creator>
      <dc:date>2024-05-21T08:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a segment with N first line from a table report order bye amount value ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3934846#M153068</link>
      <description>&lt;P&gt;I will try to follow the instructions in your link and create the measurement then integrate it into your formula. I'll keep you informed.&lt;BR /&gt;In any case, thank you for your valuable help.&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 09:08:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3934846#M153068</guid>
      <dc:creator>Lefuneste57</dc:creator>
      <dc:date>2024-05-21T09:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a segment with N first line from a table report order bye amount value ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3935393#M153079</link>
      <description>&lt;P&gt;Can you send me the Pbx of your example please ?&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 10:35:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3935393#M153079</guid>
      <dc:creator>Lefuneste57</dc:creator>
      <dc:date>2024-05-21T10:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a segment with N first line from a table report order bye amount value ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3935515#M153081</link>
      <description>&lt;P&gt;I just followed your instructions and it works fine! I learned something again &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; thanks to you very much. I didn't know about dynamic filters. Thanks again for your help, it’s GREAT.&lt;BR /&gt;Have a good day.&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 10:56:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3935515#M153081</guid>
      <dc:creator>Lefuneste57</dc:creator>
      <dc:date>2024-05-21T10:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a segment with N first line from a table report order bye amount value ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3935591#M153082</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="150430" data-lia-user-login="Lefuneste57" class="lia-mention lia-mention-user"&gt;Lefuneste57&lt;/a&gt;&amp;nbsp;- Great! I'm so glad it's worked for you. Anything in a measure is Dynamic, so when you need things to change according to filters, you need a measure.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 11:03:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-segment-with-N-first-line-from-a-table-report/m-p/3935591#M153082</guid>
      <dc:creator>mark_endicott</dc:creator>
      <dc:date>2024-05-21T11:03:35Z</dc:date>
    </item>
  </channel>
</rss>

