<?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: This post is deleted in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/This-post-is-deleted/m-p/4713363#M180526</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="880413" data-lia-user-login="Bertje123456" class="lia-mention lia-mention-user"&gt;Bertje123456&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;We would like to follow up to see if the solution provided by the user resolved your issue. Please let us know if you need any further assistance.&lt;BR /&gt;If the provided response resolved your issue, please mark it as "Accept as solution" and click "Yes" if you found it helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Chaithra.&lt;/P&gt;</description>
    <pubDate>Fri, 30 May 2025 06:04:55 GMT</pubDate>
    <dc:creator>v-echaithra</dc:creator>
    <dc:date>2025-05-30T06:04:55Z</dc:date>
    <item>
      <title>This post is deleted</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/This-post-is-deleted/m-p/4702397#M180103</link>
      <description>&lt;P&gt;This post is deleted.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 May 2025 08:38:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/This-post-is-deleted/m-p/4702397#M180103</guid>
      <dc:creator>Bertje123456</dc:creator>
      <dc:date>2025-05-27T08:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: This post is deleted</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/This-post-is-deleted/m-p/4702514#M180109</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/880413" target="_self"&gt;&lt;SPAN class=""&gt;Bertje123456&lt;/SPAN&gt;&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;As I am not confortable in Power Query &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&amp;nbsp;&lt;BR /&gt;Please find the DAX version to solve the above problem.&lt;BR /&gt;1. Create a new table which can help&lt;BR /&gt;ExceedanceType = DATATABLE(&lt;BR /&gt;"ExceedType", STRING,&lt;BR /&gt;{&lt;BR /&gt;{ "3 exceedances within limit" },&lt;BR /&gt;{ "3 exceedances beyond limit" }&lt;BR /&gt;}&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;2.Create below measures:&lt;BR /&gt;ExceedancesWithinLimit =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;DISTINCTCOUNT('VW_AANSLUITING_VERBRUIK_ELK'[EAN code]),&lt;BR /&gt;FILTER(&lt;BR /&gt;'VW_AANSLUITING_VERBRUIK_ELK',&lt;BR /&gt;'VW_AANSLUITING_VERBRUIK_ELK'[Number of months] = 3&lt;BR /&gt;&amp;amp;&amp;amp; 'VW_AANSLUITING_VERBRUIK_ELK'[kW transport capacity exceedance] &amp;gt; 0&lt;BR /&gt;),&lt;BR /&gt;RELATED('VW_AANSLUITING_VERBRUIK_ELK'[kW transport capacity exceedance]) &amp;lt;= RELATED('VW_D_Transportbeperking'[Limit])&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;ExceedancesBeyondLimit =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;DISTINCTCOUNT('VW_AANSLUITING_VERBRUIK_ELK'[EAN code]),&lt;BR /&gt;FILTER(&lt;BR /&gt;'VW_AANSLUITING_VERBRUIK_ELK',&lt;BR /&gt;'VW_AANSLUITING_VERBRUIK_ELK'[Number of months] = 3&lt;BR /&gt;&amp;amp;&amp;amp; 'VW_AANSLUITING_VERBRUIK_ELK'[kW transport capacity exceedance] &amp;gt; 0&lt;BR /&gt;),&lt;BR /&gt;RELATED('VW_AANSLUITING_VERBRUIK_ELK'[kW transport capacity exceedance]) &amp;gt; RELATED('VW_D_Transportbeperking'[Limit])&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;3. Create a unified measure:&lt;BR /&gt;ExceedanceCount =&lt;BR /&gt;SWITCH(&lt;BR /&gt;SELECTEDVALUE('ExceedanceType'[ExceedType]),&lt;BR /&gt;"3 exceedances within limit", [ExceedancesWithinLimit],&lt;BR /&gt;"3 exceedances beyond limit", [ExceedancesBeyondLimit],&lt;BR /&gt;BLANK()&lt;BR /&gt;)&lt;BR /&gt;4.Build your matrix visual&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please let me know if you have further questions.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If this reply helped solve your problem, please consider clicking "Accept as Solution" so others can benefit too.&amp;nbsp;And if you found it useful, a quick "Kudos" is always appreciated, thanks!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maruthi&amp;nbsp;&lt;/P&gt;&lt;P&gt;LinkedIn -&amp;nbsp;&lt;A href="http://www.linkedin.com/in/maruthi-siva-prasad/" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.linkedin.com/in/maruthi-siva-prasad/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;X&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -&amp;nbsp;&amp;nbsp;&lt;A href="https://x.com/maruthisp" target="_blank" rel="nofollow noopener noreferrer"&gt;Maruthi Siva Prasad - (@MaruthiSP) / X&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 02:06:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/This-post-is-deleted/m-p/4702514#M180109</guid>
      <dc:creator>maruthisp</dc:creator>
      <dc:date>2025-05-22T02:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: This post is deleted</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/This-post-is-deleted/m-p/4708227#M180325</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="880413" data-lia-user-login="Bertje123456" class="lia-mention lia-mention-user"&gt;Bertje123456&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;May I ask if you have gotten this issue resolved?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it is solved, please mark the helpful reply or share your solution and accept it as solution, it will be helpful for other members of the community who have similar problems as yours to solve it faster.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Chaithra.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 May 2025 05:36:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/This-post-is-deleted/m-p/4708227#M180325</guid>
      <dc:creator>v-echaithra</dc:creator>
      <dc:date>2025-05-27T05:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: This post is deleted</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/This-post-is-deleted/m-p/4713363#M180526</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="880413" data-lia-user-login="Bertje123456" class="lia-mention lia-mention-user"&gt;Bertje123456&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;We would like to follow up to see if the solution provided by the user resolved your issue. Please let us know if you need any further assistance.&lt;BR /&gt;If the provided response resolved your issue, please mark it as "Accept as solution" and click "Yes" if you found it helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Chaithra.&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2025 06:04:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/This-post-is-deleted/m-p/4713363#M180526</guid>
      <dc:creator>v-echaithra</dc:creator>
      <dc:date>2025-05-30T06:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: This post is deleted</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/This-post-is-deleted/m-p/4716671#M180662</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="880413" data-lia-user-login="Bertje123456" class="lia-mention lia-mention-user"&gt;Bertje123456&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to Microsoft Community.&lt;BR /&gt;If the issue is resolved by yourself,&amp;nbsp;&lt;SPAN data-teams="true"&gt;i request you to please accept your own post as the solution, this will help other community members who might face a similar issue. If not&amp;nbsp;raise a new thread if there are any issues or concerns&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and Regards.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2025 04:31:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/This-post-is-deleted/m-p/4716671#M180662</guid>
      <dc:creator>v-echaithra</dc:creator>
      <dc:date>2025-06-11T04:31:49Z</dc:date>
    </item>
  </channel>
</rss>

