<?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/3297485#M43197</link>
    <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Thank you so much this measure is working correctly.&lt;/P&gt;</description>
    <pubDate>Thu, 22 Jun 2023 10:08:30 GMT</pubDate>
    <dc:creator>Prakash1050</dc:creator>
    <dc:date>2023-06-22T10:08:30Z</dc:date>
    <item>
      <title>Need Dax Measure</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3290858#M43138</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;I have 3 tables "a", "b" and "c". The "a", "b" table have one common column and "b", "c" table have one common column. If in the filter pane i selected one value of common column in "a" table should be filter in "c" table. But I don't want to create a relationship between these tables only Measure can be done this scenario. Please help me.&lt;BR /&gt;&lt;BR /&gt;Thanks in Advance.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 11:39:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3290858#M43138</guid>
      <dc:creator>Prakash1050</dc:creator>
      <dc:date>2023-06-19T11:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: Need Dax Measure</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3294302#M43167</link>
      <description>&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/469930"&gt;@Prakash1050&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;It seems like you want to achieve two step filter effect without real relationship mappings, you can take a look at me following measure formula if it helps:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;formula =
VAR list =
    CALCULATE (
        SUM ( TableB[Column2] ),
        FILTER ( ALLSELECTED ( TableB ), TableB[Column1] IN VALUES ( TableA[Column1] ) )
    )
RETURN
    CALCULATE (
        SUM ( TableC[Value] ),
        FILTER ( ALLSELECTED ( TableC ), TableC[Column2] IN list )
    )
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Xiaoxin Sheng&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 02:00:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3294302#M43167</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-06-21T02:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: Need Dax Measure</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3294535#M43169</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&amp;nbsp; This measure is not correct i clearly mention in the below kindly help me.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;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;</description>
      <pubDate>Wed, 21 Jun 2023 04:42:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3294535#M43169</guid>
      <dc:creator>Prakash1050</dc:creator>
      <dc:date>2023-06-21T04:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: Need Dax Measure</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3297270#M43194</link>
      <description>&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/469930"&gt;@Prakash1050&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;It seems like I shared the wrong formulas, you can take a look at the&amp;nbsp; following formulas that I fixed the wrong part and modify with the field name that you shared to get calculation result from Dax condition filters without really relationship mappings.&lt;/FONT&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;formula =
VAR idList =
    CALCULATETABLE (
        VALUES ( TableB[Entity ID] ),
        FILTER ( ALLSELECTED ( TableB ), TableB[Key] IN VALUES ( TableA[Key] ) )
    )
RETURN
    CALCULATE (
        SUM ( TableC[Value] ),
        FILTER ( ALLSELECTED ( TableC ), TableC[Entity ID] IN idList )
    )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Xiaoxin Sheng&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 08:22:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3297270#M43194</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-06-22T08:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: Need Dax Measure</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3297485#M43197</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Thank you so much this measure is working correctly.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 10:08:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-Dax-Measure/m-p/3297485#M43197</guid>
      <dc:creator>Prakash1050</dc:creator>
      <dc:date>2023-06-22T10:08:30Z</dc:date>
    </item>
  </channel>
</rss>

