<?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: Filter Problem in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Problem/m-p/4372317#M173582</link>
    <description>&lt;P&gt;Sorry for misleading information provided earlier. I am very new to PowerBI &amp;amp; DAX hence might not be able to construct my question properly. I am not able to attach sample PowerBI here&amp;nbsp; to explain my case&lt;/P&gt;&lt;P&gt;What I was saying is;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Column Batsman&lt;/STRONG&gt;&amp;nbsp;have 5 entries of &lt;STRONG&gt;KS Bharat&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Column Batsman_Runs&lt;/STRONG&gt; have sum of 10 for all those 5 entries&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Column Player_Dismissed&lt;/STRONG&gt;&amp;nbsp;have &lt;STRONG&gt;4 entries of KS Bharat&amp;nbsp;&lt;/STRONG&gt;and&amp;nbsp;&lt;STRONG&gt;1 entry of V Kohli&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Column Wicket_Type&amp;nbsp;&lt;/STRONG&gt;have 4 entries for KS Bharat (2-caught, 1-bowled, 1-run out) and 1 entry for V Kohli (1-run out)&lt;/P&gt;&lt;P&gt;now as i earlier mentioned I used DAX formula&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;M Dismissed_Times=&lt;BR /&gt;Calculate(COUNTA(Test[Player_Dismissed]), FILTER(TEST, AND(TEST[Player_Dismissed]&amp;lt;&amp;gt;"",TEST[Wicket_Type]&amp;lt;&amp;gt;"run out")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;which I know it is giving me wrong result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want Dismissed_Times should show 4 in the matrix, where it is showing 3 by using above wrong DAX formula.&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;</description>
    <pubDate>Mon, 20 Jan 2025 18:36:04 GMT</pubDate>
    <dc:creator>sdm2211</dc:creator>
    <dc:date>2025-01-20T18:36:04Z</dc:date>
    <item>
      <title>Filter Problem</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Problem/m-p/4372254#M173579</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;I am having following table with the mentioned data&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Batsman&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Wicket_Type&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Player_Dismisse&lt;/STRONG&gt;d&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;KS Bharat&lt;/TD&gt;&lt;TD&gt;caught&lt;/TD&gt;&lt;TD&gt;KS Bharat&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;KS Bharat&lt;/TD&gt;&lt;TD&gt;bowled&lt;/TD&gt;&lt;TD&gt;KS Bharat&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;KS Bharat&lt;/TD&gt;&lt;TD&gt;stumped&lt;/TD&gt;&lt;TD&gt;KS Bharat&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;KS Bharat&lt;/TD&gt;&lt;TD&gt;caught&lt;/TD&gt;&lt;TD&gt;KS Bharat&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;KS Bharat&lt;/TD&gt;&lt;TD&gt;run out&lt;/TD&gt;&lt;TD&gt;KS Bharat&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;KS Bharat&lt;/TD&gt;&lt;TD&gt;run out&lt;/TD&gt;&lt;TD&gt;V Kohli&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;above table shows Batsman&amp;nbsp;&lt;STRONG&gt;KS Bharat&amp;nbsp;&lt;/STRONG&gt;is dismissed/out 5 times (caught-2, bowled-1, stumped-1, run out-1) hence ideally it should show me 5 times. however it showing me 6 times out (including that of V Kohli as well)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used DAX formula as below&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;M Test =&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Calculate(COUNTA(Deliveries[Player_Dismissed]),Filter(Deliveries,AND(Deliveries[Player_dismissed]&amp;lt;&amp;gt;"",Deliveries[Wicket_Type]&amp;lt;&amp;gt;"run out")))&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;however it is filtering 1 entry of "run out" for KS Bharat and returning count as 4 instead of 5.&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;How can i achieve the correct result&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 20 Jan 2025 16:36:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Problem/m-p/4372254#M173579</guid>
      <dc:creator>sdm2211</dc:creator>
      <dc:date>2025-01-20T16:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Problem</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Problem/m-p/4372287#M173581</link>
      <description>&lt;P&gt;You have used a FILTER .&lt;/P&gt;
&lt;P&gt;The last 2 records dont have a blank playe_dismissed name&lt;/P&gt;
&lt;P&gt;and the Type is not run_out.&amp;nbsp; So the answer is 4.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you explain what you want rather than post your buggy DAX and expect us to fathom what you want, then we can try help. Thanks&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2025 17:16:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Problem/m-p/4372287#M173581</guid>
      <dc:creator>speedramps</dc:creator>
      <dc:date>2025-01-20T17:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Problem</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Problem/m-p/4372317#M173582</link>
      <description>&lt;P&gt;Sorry for misleading information provided earlier. I am very new to PowerBI &amp;amp; DAX hence might not be able to construct my question properly. I am not able to attach sample PowerBI here&amp;nbsp; to explain my case&lt;/P&gt;&lt;P&gt;What I was saying is;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Column Batsman&lt;/STRONG&gt;&amp;nbsp;have 5 entries of &lt;STRONG&gt;KS Bharat&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Column Batsman_Runs&lt;/STRONG&gt; have sum of 10 for all those 5 entries&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Column Player_Dismissed&lt;/STRONG&gt;&amp;nbsp;have &lt;STRONG&gt;4 entries of KS Bharat&amp;nbsp;&lt;/STRONG&gt;and&amp;nbsp;&lt;STRONG&gt;1 entry of V Kohli&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Column Wicket_Type&amp;nbsp;&lt;/STRONG&gt;have 4 entries for KS Bharat (2-caught, 1-bowled, 1-run out) and 1 entry for V Kohli (1-run out)&lt;/P&gt;&lt;P&gt;now as i earlier mentioned I used DAX formula&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;M Dismissed_Times=&lt;BR /&gt;Calculate(COUNTA(Test[Player_Dismissed]), FILTER(TEST, AND(TEST[Player_Dismissed]&amp;lt;&amp;gt;"",TEST[Wicket_Type]&amp;lt;&amp;gt;"run out")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;which I know it is giving me wrong result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want Dismissed_Times should show 4 in the matrix, where it is showing 3 by using above wrong DAX formula.&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;</description>
      <pubDate>Mon, 20 Jan 2025 18:36:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Problem/m-p/4372317#M173582</guid>
      <dc:creator>sdm2211</dc:creator>
      <dc:date>2025-01-20T18:36:04Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Problem</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Problem/m-p/4374702#M173700</link>
      <description>&lt;P&gt;&lt;FONT&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="907940" data-lia-user-login="sdm2211" class="lia-mention lia-mention-user"&gt;sdm2211&lt;/a&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;I'm sorry I can't fully understand your question, but as speedramps said, based on the table data you posted, it looks like your DAX returns result 4 correctly.&lt;BR /&gt;What is the 'Batsman_Runs' column mentioned in your latest reply?&lt;BR /&gt;Could you please provide sample data that completely covers your question and your expected results?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;BR /&gt;Please refer to the link below:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Power-BI-Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;How to Get Your Question Answered Quickly - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Power-BI-Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;How to provide sample data in the Power BI Forum - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jarvis Tang&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;, then please consider&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jan 2025 03:24:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Problem/m-p/4374702#M173700</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-22T03:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Problem</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Problem/m-p/4375415#M173714</link>
      <description>&lt;P&gt;hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the sample file for your use.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/file/d/1CTCumgGgksidcWrvQ8afjoqDj4LCnNH_/view?usp=drive_link" target="_blank"&gt;https://drive.google.com/file/d/1CTCumgGgksidcWrvQ8afjoqDj4LCnNH_/view?usp=drive_link&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jan 2025 10:14:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Problem/m-p/4375415#M173714</guid>
      <dc:creator>sdm2211</dc:creator>
      <dc:date>2025-01-22T10:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Problem</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Problem/m-p/4376723#M173770</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="907940" data-lia-user-login="sdm2211" class="lia-mention lia-mention-user"&gt;sdm2211&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't have access to this file.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jarvis Tang&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;, then please consider&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2025 02:31:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Problem/m-p/4376723#M173770</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-23T02:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Problem</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Problem/m-p/4376848#M173772</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;Sorry for&amp;nbsp;&lt;SPAN&gt;inconvenience.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;can you please re-check now&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/file/d/1CTCumgGgksidcWrvQ8afjoqDj4LCnNH_/view?usp=sharing" target="_blank"&gt;https://drive.google.com/file/d/1CTCumgGgksidcWrvQ8afjoqDj4LCnNH_/view?usp=sharing&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2025 04:25:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Problem/m-p/4376848#M173772</guid>
      <dc:creator>sdm2211</dc:creator>
      <dc:date>2025-01-23T04:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Problem</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Problem/m-p/4376998#M173781</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="907940" data-lia-user-login="sdm2211" class="lia-mention lia-mention-user"&gt;sdm2211&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please try this dax:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;M Test =
CALCULATE(
    COUNTA(Deliveries[Player_Dismissed]),
    FILTER(
        Deliveries,
        Deliveries[Player_Dismissed] = Deliveries[Batsman] &amp;amp;&amp;amp;
        Deliveries[Player_Dismissed] &amp;lt;&amp;gt; "" &amp;amp;&amp;amp;
        Deliveries[Wicket_Type] &amp;lt;&amp;gt; ""
    )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Only rows where Player_Dismissed matches the Batsman are counted.&lt;/LI&gt;
&lt;LI&gt;"Run out" is included if it applies to the same batsman.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2025 06:16:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Problem/m-p/4376998#M173781</guid>
      <dc:creator>Poojara_D12</dc:creator>
      <dc:date>2025-01-23T06:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Problem</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Problem/m-p/4377000#M173782</link>
      <description>&lt;P&gt;&lt;FONT&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="907940" data-lia-user-login="sdm2211" class="lia-mention lia-mention-user"&gt;sdm2211&lt;/a&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I understand you correctly, you are trying to count the number of times each batsman dismissed. Based on your sample data, you can create the metric using the following DAX:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Dismissed_times = 
CALCULATE(
    COUNTROWS(Test),
    FILTER(
        Test,
        Test[Player_Dismissed] = Test[Batsman]
    )
)&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;&lt;FONT&gt;In your measure, you filtered using &lt;STRONG&gt;AND(TEST[Player_Dismissed] = “”, TEST[Wicket_Type] = “run out”)&lt;/STRONG&gt; and got result 3 as it should be.&lt;BR /&gt;You can verify this by manually filtering your data in Power BI:&lt;BR /&gt;1. Filtered by&amp;nbsp;&lt;STRONG&gt;TEST[Player_Dismissed] = “”&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;2.&amp;nbsp;Filtered by &lt;STRONG&gt;TEST[Wicket_Type] = “run out”&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;The final result of &lt;STRONG&gt;COUNTA(Test[Player_Dismissed])&lt;/STRONG&gt; is of course 3.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jarvis Tang&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;, then please consider&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2025 06:17:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Problem/m-p/4377000#M173782</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-23T06:17:33Z</dc:date>
    </item>
  </channel>
</rss>

