<?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: Need Dax Measure in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3298910#M43204</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/469930"&gt;@Prakash1050&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please update the formula of measure as below and check if it can work even though filter the value of field [BU] or [Composite] field in the table A.&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
VAR _selkeys =
    CALCULATETABLE (
        VALUES ( 'A'[Key] ),
        ALLSELECTED('A')
    )
VAR _entitylist =
    CALCULATETABLE (
        VALUES ( 'B'[Entity ID] ),
        FILTER ( 'B', 'B'[Key] IN _selkeys )
    )
RETURN
    CALCULATE ( SUM ( 'C'[Value] ), FILTER ( 'C', 'C'[Entity ID] IN _entitylist ) )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vyiruanmsft_0-1687485603664.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/932553i4C774A6411120A7A/image-size/large?v=v2&amp;amp;px=999" role="button" title="vyiruanmsft_0-1687485603664.png" alt="vyiruanmsft_0-1687485603664.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
    <pubDate>Fri, 23 Jun 2023 02:00:34 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-06-23T02:00:34Z</dc:date>
    <item>
      <title>Need Dax Measure</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3291074#M43140</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I need DAX Measure for not creating relationship and get the answer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I have 3 Tables A, B, C.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; A table have BU, Composite and Key columns.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; B table have Key, Entity ID and Fam ID.&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; C table have Entity ID and Value.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; A table key column and B table key column are common column.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; B table Entity ID column and C table Entity ID column are common column.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I need DAX for in the filter pane if A table key column selected the B table key column also filterd as well as B table key column direct to the B Table Entity ID Column also filtered and the same Enitity ID in C table column also filterd and get the Value Column answer.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;I hope this scenario you understand please help me to acheive this DAX.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 13:23:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3291074#M43140</guid>
      <dc:creator>Prakash1050</dc:creator>
      <dc:date>2023-06-19T13:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: Need Dax Measure</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3294684#M43177</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/469930"&gt;@Prakash1050&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;You can create a &lt;STRONG&gt;measure&lt;/STRONG&gt; as below to get it, please find the details in the attachment.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
VAR _selkeys =
    ALLSELECTED ( 'A'[Key] )
VAR _entitylist =
    CALCULATETABLE (
        VALUES ( 'B'[Entity ID] ),
        FILTER ( 'B', 'B'[Key] IN _selkeys )
    )
RETURN
    CALCULATE ( SUM ( 'C'[Value] ), FILTER ( 'C', 'C'[Entity ID] IN _entitylist ) )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vyiruanmsft_1-1687328470840.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/931348i4E13D2F0E65150D7/image-size/large?v=v2&amp;amp;px=999" role="button" title="vyiruanmsft_1-1687328470840.png" alt="vyiruanmsft_1-1687328470840.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vyiruanmsft_0-1687328439765.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/931347iF74353724F0B0C58/image-size/large?v=v2&amp;amp;px=999" role="button" title="vyiruanmsft_0-1687328439765.png" alt="vyiruanmsft_0-1687328439765.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 06:21:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3294684#M43177</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-06-21T06:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: Need Dax Measure</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3295697#M43183</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; This Measure is worked when i filtered A table Column Key. If filtered BU or Composite in Table A the value showing same value not filtered values&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 13:33:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3295697#M43183</guid>
      <dc:creator>Prakash1050</dc:creator>
      <dc:date>2023-06-21T13:33:17Z</dc:date>
    </item>
    <item>
      <title>Re: Need Dax Measure</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3298910#M43204</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/469930"&gt;@Prakash1050&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please update the formula of measure as below and check if it can work even though filter the value of field [BU] or [Composite] field in the table A.&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
VAR _selkeys =
    CALCULATETABLE (
        VALUES ( 'A'[Key] ),
        ALLSELECTED('A')
    )
VAR _entitylist =
    CALCULATETABLE (
        VALUES ( 'B'[Entity ID] ),
        FILTER ( 'B', 'B'[Key] IN _selkeys )
    )
RETURN
    CALCULATE ( SUM ( 'C'[Value] ), FILTER ( 'C', 'C'[Entity ID] IN _entitylist ) )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vyiruanmsft_0-1687485603664.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/932553i4C774A6411120A7A/image-size/large?v=v2&amp;amp;px=999" role="button" title="vyiruanmsft_0-1687485603664.png" alt="vyiruanmsft_0-1687485603664.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2023 02:00:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3298910#M43204</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-06-23T02:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: Need Dax Measure</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3299181#M43211</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;This Measure is Working Thank you so much&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2023 06:14:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3299181#M43211</guid>
      <dc:creator>Prakash1050</dc:creator>
      <dc:date>2023-06-23T06:14:16Z</dc:date>
    </item>
  </channel>
</rss>

