<?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: indentify first instance based on multi criteria power bi in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/indentify-first-instance-based-on-multi-criteria-power-bi/m-p/2805454#M88444</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I get help on this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandrashekar B&lt;/P&gt;</description>
    <pubDate>Thu, 29 Sep 2022 08:28:38 GMT</pubDate>
    <dc:creator>Chandrashekar</dc:creator>
    <dc:date>2022-09-29T08:28:38Z</dc:date>
    <item>
      <title>indentify first instance based on multi criteria power bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/indentify-first-instance-based-on-multi-criteria-power-bi/m-p/2789269#M87519</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have requested for column formula in below post but unfortunately it is not working if I use Index in other table.&lt;/P&gt;&lt;P&gt;Here am trying to get first instance based on multi criteria.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sample Excel data with Formula:&amp;nbsp;&lt;A href="https://docs.google.com/spreadsheets/d/1BHzqFg7UMod5VyXPH_aqsLB2XBKsD6KJ/edit?usp=sharing&amp;amp;ouid=102643636652499548636&amp;amp;rtpof=true&amp;amp;sd=true" target="_self"&gt;Sample Excel Data&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sample PBIX file:&amp;nbsp;&lt;A href="https://drive.google.com/file/d/1NyM0WT95FWyeKh5cJpRF3yRBM-fqlkiQ/view?usp=sharing" target="_self"&gt;PBIX&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Previous Post:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/DAX-Commands-and-Tips/indentify-first-instance-based-on-multi-criteria-power-bi/td-p/2785860" target="_blank"&gt;https://community.powerbi.com/t5/DAX-Commands-and-Tips/indentify-first-instance-based-on-multi-criteria-power-bi/td-p/2785860&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 09:15:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/indentify-first-instance-based-on-multi-criteria-power-bi/m-p/2789269#M87519</guid>
      <dc:creator>Chandrashekar</dc:creator>
      <dc:date>2022-09-23T09:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: indentify first instance based on multi criteria power bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/indentify-first-instance-based-on-multi-criteria-power-bi/m-p/2789297#M87521</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am aware that there is relationship between tables. Is there any way I can achieve this as when I used in large data formula is not working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandrashekar B&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 09:20:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/indentify-first-instance-based-on-multi-criteria-power-bi/m-p/2789297#M87521</guid>
      <dc:creator>Chandrashekar</dc:creator>
      <dc:date>2022-09-23T09:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: indentify first instance based on multi criteria power bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/indentify-first-instance-based-on-multi-criteria-power-bi/m-p/2798507#M87998</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="349843" data-lia-user-login="Chandrashekar" class="lia-mention lia-mention-user"&gt;Chandrashekar&lt;/a&gt;&amp;nbsp;，&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this dax sytnax:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Result = 
VAR _Rank=RANKX('Table',IF(MOD([Index],2)=0,[Index]-1,[Index]),,ASC,Dense)
RETURN
IF(MOD(_Rank,2)=0,0,1)&lt;/LI-CODE&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;Best regards,&lt;/P&gt;
&lt;P&gt;Community Support Team&amp;nbsp;&lt;STRONG&gt;Selina&amp;nbsp;zhu&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;to help the other members find it more quickly&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 05:08:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/indentify-first-instance-based-on-multi-criteria-power-bi/m-p/2798507#M87998</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-09-27T05:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: indentify first instance based on multi criteria power bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/indentify-first-instance-based-on-multi-criteria-power-bi/m-p/2798632#M88003</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the formula but it not matching my requirement when I use in large data.&lt;/P&gt;&lt;P&gt;How to use dax containing all 3 conditions as mentioned in image. I see dax shared from you is on Index column only.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In excel am using&amp;nbsp;=IF(COUNTIFS(B$2:B2,B2,D$2:D2,D2,C$2:C2,C2)=1,1,0).&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 06:11:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/indentify-first-instance-based-on-multi-criteria-power-bi/m-p/2798632#M88003</guid>
      <dc:creator>Chandrashekar</dc:creator>
      <dc:date>2022-09-27T06:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: indentify first instance based on multi criteria power bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/indentify-first-instance-based-on-multi-criteria-power-bi/m-p/2805454#M88444</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I get help on this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandrashekar B&lt;/P&gt;</description>
      <pubDate>Thu, 29 Sep 2022 08:28:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/indentify-first-instance-based-on-multi-criteria-power-bi/m-p/2805454#M88444</guid>
      <dc:creator>Chandrashekar</dc:creator>
      <dc:date>2022-09-29T08:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: indentify first instance based on multi criteria power bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/indentify-first-instance-based-on-multi-criteria-power-bi/m-p/2805687#M88469</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="349843" data-lia-user-login="Chandrashekar" class="lia-mention lia-mention-user"&gt;Chandrashekar&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is the specific conditional filtering that you mentioned that requires the use of three conditions?&lt;BR /&gt;Be aware that the formulas used in excel and power bi desktop are different.&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&amp;nbsp;&lt;STRONG&gt;Selina&amp;nbsp;zhu&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;to help the other members find it more quickly&lt;/P&gt;</description>
      <pubDate>Thu, 29 Sep 2022 09:20:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/indentify-first-instance-based-on-multi-criteria-power-bi/m-p/2805687#M88469</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-09-29T09:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: indentify first instance based on multi criteria power bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/indentify-first-instance-based-on-multi-criteria-power-bi/m-p/2805773#M88476</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your reply. At last I got the solution to it. I concat 3 columns and took unique from it and now it is working fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandrashekar B&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Sep 2022 09:33:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/indentify-first-instance-based-on-multi-criteria-power-bi/m-p/2805773#M88476</guid>
      <dc:creator>Chandrashekar</dc:creator>
      <dc:date>2022-09-29T09:33:00Z</dc:date>
    </item>
  </channel>
</rss>

