<?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 I want to create a custom table by using dax for top 5 January month contribution pls help me in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-want-to-create-a-custom-table-by-using-dax-for-top-5-January/m-p/3739202#M145780</link>
    <description>&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;</description>
    <pubDate>Mon, 04 Mar 2024 07:25:32 GMT</pubDate>
    <dc:creator>tkavitha911</dc:creator>
    <dc:date>2024-03-04T07:25:32Z</dc:date>
    <item>
      <title>I want to create a custom table by using dax for top 5 January month contribution pls help me</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-want-to-create-a-custom-table-by-using-dax-for-top-5-January/m-p/3739202#M145780</link>
      <description>&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;</description>
      <pubDate>Mon, 04 Mar 2024 07:25:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-want-to-create-a-custom-table-by-using-dax-for-top-5-January/m-p/3739202#M145780</guid>
      <dc:creator>tkavitha911</dc:creator>
      <dc:date>2024-03-04T07:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: I want to create a custom table by using dax for top 5 January month contribution pls help me</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-want-to-create-a-custom-table-by-using-dax-for-top-5-January/m-p/3739363#M145785</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="672212" data-lia-user-login="tkavitha911" class="lia-mention lia-mention-user"&gt;tkavitha911&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does this help?:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;TOPN (
    5,
    SUMMARIZE (
        Table,
        Table[Period],
        Table[SPGR Real],
        "ABS_ERROR", SUM ( Table[ABS ERROR] )
    ),
    "ABS_ERROR", DESC
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please include the group by columns and the value column you want to summarize by in the formula.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please use the formula for a calculated table.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 08:19:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-want-to-create-a-custom-table-by-using-dax-for-top-5-January/m-p/3739363#M145785</guid>
      <dc:creator>govindarajan_d</dc:creator>
      <dc:date>2024-03-04T08:19:57Z</dc:date>
    </item>
    <item>
      <title>Re: I want to create a custom table by using dax for top 5 January month contribution pls help me</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-want-to-create-a-custom-table-by-using-dax-for-top-5-January/m-p/3739407#M145788</link>
      <description>&lt;P&gt;i want to create a custom table&amp;nbsp; to display latest month top 5 spgrs for each channel&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 08:30:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-want-to-create-a-custom-table-by-using-dax-for-top-5-January/m-p/3739407#M145788</guid>
      <dc:creator>tkavitha911</dc:creator>
      <dc:date>2024-03-04T08:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: I want to create a custom table by using dax for top 5 January month contribution pls help me</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-want-to-create-a-custom-table-by-using-dax-for-top-5-January/m-p/3739474#M145794</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="672212" data-lia-user-login="tkavitha911" class="lia-mention lia-mention-user"&gt;tkavitha911&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please try like this:&lt;/P&gt;&lt;P&gt;Create this measure:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Rank by Month =
RANKX(SUMMARIZE(Table,Table[Channel],Table[SPGR Real],"ABSERROR",SUM(Table[ABS Error])),[ABSERROR],DESC)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Then create this measure:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Top 5 = CALCULATE(SUM(Table[ABS Error]),FILTER(ALL(Table),Table[Period] = MAX(Table[Period]) &amp;amp;&amp;amp; [Rank by Month] &amp;lt;=5))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Add the measure ('Top 5') to a table visualization and then add&amp;nbsp; SPGRS and Channel column to the table.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 08:54:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-want-to-create-a-custom-table-by-using-dax-for-top-5-January/m-p/3739474#M145794</guid>
      <dc:creator>govindarajan_d</dc:creator>
      <dc:date>2024-03-04T08:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: I want to create a custom table by using dax for top 5 January month contribution pls help me</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-want-to-create-a-custom-table-by-using-dax-for-top-5-January/m-p/3739500#M145797</link>
      <description>&lt;P&gt;Above which i am provided it is output i want to create top 5 for the month of january 2024. and that top 5 spgrs i want to display m-3 accuracy percentage last 4 months like this&amp;nbsp;&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;</description>
      <pubDate>Mon, 04 Mar 2024 09:01:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-want-to-create-a-custom-table-by-using-dax-for-top-5-January/m-p/3739500#M145797</guid>
      <dc:creator>tkavitha911</dc:creator>
      <dc:date>2024-03-04T09:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: I want to create a custom table by using dax for top 5 January month contribution pls help me</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-want-to-create-a-custom-table-by-using-dax-for-top-5-January/m-p/3739526#M145799</link>
      <description>&lt;P&gt;Not solved my issue pls help me on this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 09:11:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-want-to-create-a-custom-table-by-using-dax-for-top-5-January/m-p/3739526#M145799</guid>
      <dc:creator>tkavitha911</dc:creator>
      <dc:date>2024-03-04T09:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: I want to create a custom table by using dax for top 5 January month contribution pls help me</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-want-to-create-a-custom-table-by-using-dax-for-top-5-January/m-p/3739682#M145806</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="672212" data-lia-user-login="tkavitha911" class="lia-mention lia-mention-user"&gt;tkavitha911&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did not understand your requirement. Please provide all the requirement in the question itself.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2024 19:09:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-want-to-create-a-custom-table-by-using-dax-for-top-5-January/m-p/3739682#M145806</guid>
      <dc:creator>govindarajan_d</dc:creator>
      <dc:date>2024-03-12T19:09:38Z</dc:date>
    </item>
  </channel>
</rss>

