<?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: Display first 10 values as is and remaining row values with specific name in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Display-first-10-values-as-is-and-remaining-row-values-with/m-p/3031522#M103599</link>
    <description>&lt;P&gt;Hi!&lt;BR /&gt;Check out this guide:&amp;nbsp;&lt;A href="https://goodly.co.in/top-n-and-others-power-bi/" target="_blank"&gt;Display Top N items and Others in Power BI - Goodly&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You will have to modify it according to your use case. For example, define what columns defines the sorting order, i.e. what will be the top 10 and what will be Other.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Since you know that you want top 10, you don't have to bother about implementing the dynamic top N slicer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;</description>
    <pubDate>Thu, 19 Jan 2023 14:08:28 GMT</pubDate>
    <dc:creator>TomasAndersson</dc:creator>
    <dc:date>2023-01-19T14:08:28Z</dc:date>
    <item>
      <title>Display first 10 values as is and remaining row values with specific name</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Display-first-10-values-as-is-and-remaining-row-values-with/m-p/3031492#M103598</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; There are many rows in my table. The Category name should be displayed in its current form for the first 10 rows. For the remaining records, starting with row 11, the Category should be displayed as "Others," and the remaining total values must be summed. The report connected with Live Connection&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Category&lt;/TD&gt;&lt;TD&gt;Total&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;a&lt;/TD&gt;&lt;TD&gt;30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;b&lt;/TD&gt;&lt;TD&gt;40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;c&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;d&lt;/TD&gt;&lt;TD&gt;60&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;e&lt;/TD&gt;&lt;TD&gt;70&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;f&lt;/TD&gt;&lt;TD&gt;80&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;g&lt;/TD&gt;&lt;TD&gt;90&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;h&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;i&lt;/TD&gt;&lt;TD&gt;110&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;j&lt;/TD&gt;&lt;TD&gt;120&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;k&lt;/TD&gt;&lt;TD&gt;130&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;l&lt;/TD&gt;&lt;TD&gt;140&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;m&lt;/TD&gt;&lt;TD&gt;150&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;n&lt;/TD&gt;&lt;TD&gt;160&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Expected Output&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Category&lt;/TD&gt;&lt;TD&gt;Total&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;a&lt;/TD&gt;&lt;TD&gt;30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;b&lt;/TD&gt;&lt;TD&gt;40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;c&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;d&lt;/TD&gt;&lt;TD&gt;60&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;e&lt;/TD&gt;&lt;TD&gt;70&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;f&lt;/TD&gt;&lt;TD&gt;80&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;g&lt;/TD&gt;&lt;TD&gt;90&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;h&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;i&lt;/TD&gt;&lt;TD&gt;110&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;j&lt;/TD&gt;&lt;TD&gt;120&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;others&lt;/TD&gt;&lt;TD&gt;580&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2023 13:57:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Display-first-10-values-as-is-and-remaining-row-values-with/m-p/3031492#M103598</guid>
      <dc:creator>DAXUser</dc:creator>
      <dc:date>2023-01-19T13:57:45Z</dc:date>
    </item>
    <item>
      <title>Re: Display first 10 values as is and remaining row values with specific name</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Display-first-10-values-as-is-and-remaining-row-values-with/m-p/3031522#M103599</link>
      <description>&lt;P&gt;Hi!&lt;BR /&gt;Check out this guide:&amp;nbsp;&lt;A href="https://goodly.co.in/top-n-and-others-power-bi/" target="_blank"&gt;Display Top N items and Others in Power BI - Goodly&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You will have to modify it according to your use case. For example, define what columns defines the sorting order, i.e. what will be the top 10 and what will be Other.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Since you know that you want top 10, you don't have to bother about implementing the dynamic top N slicer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2023 14:08:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Display-first-10-values-as-is-and-remaining-row-values-with/m-p/3031522#M103599</guid>
      <dc:creator>TomasAndersson</dc:creator>
      <dc:date>2023-01-19T14:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: Display first 10 values as is and remaining row values with specific name</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Display-first-10-values-as-is-and-remaining-row-values-with/m-p/3031626#M103608</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="312453" data-lia-user-login="DAXUser" class="lia-mention lia-mention-user"&gt;DAXUser&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;try to create a calculated table with this:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;Table = 
VAR _table1=
TOPN(
    10,
    data,
    [Total],    
    ASC
)
VAR _table2 =
EXCEPT(data, _table1)

VAR _table3 =
ROW(
    "Category", "Others",
    "Total", SUMX(_table2, data[Total])
)
RETURN
UNION(_table1, _table3)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it worked like this:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2023 14:46:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Display-first-10-values-as-is-and-remaining-row-values-with/m-p/3031626#M103608</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2023-01-19T14:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: Display first 10 values as is and remaining row values with specific name</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Display-first-10-values-as-is-and-remaining-row-values-with/m-p/3042068#M104389</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="404599" data-lia-user-login="TomasAndersson" class="lia-mention lia-mention-user"&gt;TomasAndersson&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This solved my problem. Thanks for the solution.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2023 09:07:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Display-first-10-values-as-is-and-remaining-row-values-with/m-p/3042068#M104389</guid>
      <dc:creator>DAXUser</dc:creator>
      <dc:date>2023-01-25T09:07:20Z</dc:date>
    </item>
  </channel>
</rss>

