<?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 Rank based on two columns in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-based-on-two-columns/m-p/2808920#M88768</link>
    <description>&lt;P&gt;Hi Experts,&lt;BR /&gt;&lt;BR /&gt;I want to create Rank based on two columns. I have tried for creating Rank on single column, but for it is not working as expected.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.dropbox.com/s/3ec0qxc2avt0t95/Rank.pbix?dl=0" target="_blank" rel="noopener"&gt;https://www.dropbox.com/s/3ec0qxc2avt0t95/Rank.pbix?dl=0&lt;/A&gt;&lt;BR /&gt;In the attached file, If I have not includd Project ID in the visual, the rank is working fine, but I want to add Project ID and the Rank should consider RiskScore and ProjectID&lt;BR /&gt;&lt;BR /&gt;Thanks in Advance&lt;/P&gt;</description>
    <pubDate>Fri, 30 Sep 2022 17:30:06 GMT</pubDate>
    <dc:creator>vally57</dc:creator>
    <dc:date>2022-09-30T17:30:06Z</dc:date>
    <item>
      <title>Rank based on two columns</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-based-on-two-columns/m-p/2808920#M88768</link>
      <description>&lt;P&gt;Hi Experts,&lt;BR /&gt;&lt;BR /&gt;I want to create Rank based on two columns. I have tried for creating Rank on single column, but for it is not working as expected.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.dropbox.com/s/3ec0qxc2avt0t95/Rank.pbix?dl=0" target="_blank" rel="noopener"&gt;https://www.dropbox.com/s/3ec0qxc2avt0t95/Rank.pbix?dl=0&lt;/A&gt;&lt;BR /&gt;In the attached file, If I have not includd Project ID in the visual, the rank is working fine, but I want to add Project ID and the Rank should consider RiskScore and ProjectID&lt;BR /&gt;&lt;BR /&gt;Thanks in Advance&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 17:30:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-based-on-two-columns/m-p/2808920#M88768</guid>
      <dc:creator>vally57</dc:creator>
      <dc:date>2022-09-30T17:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: Rank based on two columns</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-based-on-two-columns/m-p/2809646#M88878</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="449993" data-lia-user-login="vally57" class="lia-mention lia-mention-user"&gt;vally57&lt;/a&gt; , Refer my video on the same &lt;/P&gt;
&lt;P&gt;Power BI Rank Across dimension tables: &lt;A href="https://youtu.be/X59qp5gfQoA" target="_blank"&gt;https://youtu.be/X59qp5gfQoA&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Oct 2022 02:25:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-based-on-two-columns/m-p/2809646#M88878</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-10-01T02:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: Rank based on two columns</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-based-on-two-columns/m-p/2809778#M88907</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure if I understood your question correctly, but 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;img /&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;RISK - Ranking Fix =
RANKX (
    SUMMARIZE (
        ALLSELECTED ( 'Fact Risk' ),
        'Risk'[Risk Name],
        Project[Project ID]
    ),
    [Risk - NetRiskRating]
)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Oct 2022 04:22:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-based-on-two-columns/m-p/2809778#M88907</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2022-10-01T04:22:25Z</dc:date>
    </item>
    <item>
      <title>Re: Rank based on two columns</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-based-on-two-columns/m-p/2813588#M89124</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="449993" data-lia-user-login="vally57" class="lia-mention lia-mention-user"&gt;vally57&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for reaching out to us.&lt;/P&gt;
&lt;P&gt;you can try this measure to add project id&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;project id = MAXX(FILTER(Project,Project[ProjectKey]=MIN('Fact Risk'[ProjectKey])),[Project ID])&lt;/LI-CODE&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;Best Regards,&lt;/P&gt;
&lt;P&gt;Community Support Team _Tang&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 09:56:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rank-based-on-two-columns/m-p/2813588#M89124</guid>
      <dc:creator>v-xiaotang</dc:creator>
      <dc:date>2022-10-03T09:56:39Z</dc:date>
    </item>
  </channel>
</rss>

