<?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: USERELATIONSHIP problems with n:m-relationship in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5154329#M187787</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="829876" data-lia-user-login="NotebookEnjoyer" class="lia-mention lia-mention-user"&gt;NotebookEnjoyer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Microsoft Fabric Forum Community.&lt;/P&gt;
&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="645372" data-lia-user-login="techies" class="lia-mention lia-mention-user"&gt;techies&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1292787" data-lia-user-login="cengizhanarslan" class="lia-mention lia-mention-user"&gt;cengizhanarslan&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1287762" data-lia-user-login="FBergamaschi" class="lia-mention lia-mention-user"&gt;FBergamaschi&lt;/a&gt;&amp;nbsp;Thanks for the inputs.&lt;/P&gt;
&lt;P&gt;I hope the information provided by users was helpful. If you still have questions, please don't hesitate to reach out to the community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Apr 2026 10:01:47 GMT</pubDate>
    <dc:creator>v-priyankata</dc:creator>
    <dc:date>2026-04-20T10:01:47Z</dc:date>
    <item>
      <title>USERELATIONSHIP problems with n:m-relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5150840#M187756</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;I have an arrangement as follows:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Therein, the following measure unfortunately yields blank values:&lt;BR /&gt;&lt;BR /&gt;Sum by inactive Relationship = SUMX(&lt;BR /&gt;&amp;nbsp; &amp;nbsp; VALUES('Fact_2'[Key_F2]),&lt;BR /&gt;&amp;nbsp; &amp;nbsp; CALCULATE(&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SUM('Fact_1'[Value_F1]), // Any aggregation really&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; USERELATIONSHIP(&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Dim_1'[Key_D1],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Fact_2'[Key_D1]&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;BR /&gt;&amp;nbsp; &amp;nbsp; )&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The goal is a table/matrix visual like this:&lt;/P&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;My best guess is that if I force to use the inactive relationship, it is unclear which other relationship is to be ignored?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ChatGPT recommended:&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sum F1 by F2 =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUM('Fact_1'[Value_F1]),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TREATAS(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALUES('Fact_2'[Key_D1]),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Fact_1'[Key_D1]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;BR /&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This gives a value for the sum, but only one with a blank Key_D1, not differentiating.&lt;BR /&gt;&lt;BR /&gt;Thanks for any help! (And please, if you write DAX code, I would really appreciate at least some formatting and not colossal one-liners.)&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2026 09:07:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5150840#M187756</guid>
      <dc:creator>NotebookEnjoyer</dc:creator>
      <dc:date>2026-04-16T09:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: USERELATIONSHIP problems with n:m-relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5150898#M187757</link>
      <description>&lt;P&gt;Not sure if this will work but you could try&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Sum by inactive Relationship =
VAR _Keys =
    CALCULATETABLE (
        VALUES ( 'Fact_2'[Key_F2] ),
        USERELATIONSHIP ( 'Dim_1'[Key_D1], 'Fact_2'[Key_D1] )
    )
VAR Result =
    SUMX ( _Keys, CALCULATE ( SUM ( 'Fact_1'[Value_F1] ) ) )
RETURN
    Result
&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 16 Apr 2026 07:57:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5150898#M187757</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2026-04-16T07:57:11Z</dc:date>
    </item>
    <item>
      <title>Re: USERELATIONSHIP problems with n:m-relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5150967#M187758</link>
      <description>&lt;P&gt;Doesn't work, unfortunately. Could it be that the calculated "_Keys"-table does not have the original relationships anymore?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2026 09:05:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5150967#M187758</guid>
      <dc:creator>NotebookEnjoyer</dc:creator>
      <dc:date>2026-04-16T09:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: USERELATIONSHIP problems with n:m-relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5150995#M187759</link>
      <description>&lt;P&gt;I don't think that that is the problem.&lt;/P&gt;
&lt;P&gt;Can you create a measure like&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Test Sum =
SUMX ( 'Fact_2', CALCULATE ( SUM ( 'Fact_1'[Value_F1] ) ) )
&lt;/LI-CODE&gt;
&lt;P&gt;and put that into a table / matrix with&amp;nbsp;&lt;SPAN&gt;'Fact_2'[Key_D1]. This isn't using the inactive relationship at all so should tell us if the active relationships are working as intended.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2026 09:23:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5150995#M187759</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2026-04-16T09:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: USERELATIONSHIP problems with n:m-relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5151109#M187760</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="829876" data-lia-user-login="NotebookEnjoyer" class="lia-mention lia-mention-user"&gt;NotebookEnjoyer&lt;/a&gt;&amp;nbsp;please try this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Sum &lt;/SPAN&gt;&lt;SPAN&gt;by&lt;/SPAN&gt;&lt;SPAN&gt; inactive Relationship =&lt;/SPAN&gt; &lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;_CurrentKey&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;'Dim_1'&lt;/SPAN&gt;&lt;SPAN&gt;[Key_D1]&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;_Keys&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATETABLE&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;'Fact_2'&lt;/SPAN&gt;&lt;SPAN&gt;[Key_F2]&lt;/SPAN&gt;&lt;SPAN&gt; ),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;TREATAS&lt;/SPAN&gt;&lt;SPAN&gt; ( { &lt;/SPAN&gt;&lt;SPAN&gt;_CurrentKey&lt;/SPAN&gt;&lt;SPAN&gt; }, &lt;/SPAN&gt;&lt;SPAN&gt;'Fact_2'&lt;/SPAN&gt;&lt;SPAN&gt;[Key_D1]&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;Result&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;'Fact_1'&lt;/SPAN&gt;&lt;SPAN&gt;[Value_F1]&lt;/SPAN&gt;&lt;SPAN&gt; ),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;TREATAS&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;_Keys&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;'Map1'&lt;/SPAN&gt;&lt;SPAN&gt;[Key_F2]&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;Result&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 16 Apr 2026 10:46:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5151109#M187760</guid>
      <dc:creator>techies</dc:creator>
      <dc:date>2026-04-16T10:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: USERELATIONSHIP problems with n:m-relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5151717#M187761</link>
      <description>&lt;P&gt;Please try the measure below:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Sum by inactive Relationship =
VAR _Keys =
    VALUES( 'Fact_2'[Key_D1] )
RETURN
    CALCULATE(
        SUM( 'Fact_1'[Value_F1] ),
        TREATAS( _Keys, 'Dim_1'[Key_D1] )
    )&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 16 Apr 2026 20:25:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5151717#M187761</guid>
      <dc:creator>cengizhanarslan</dc:creator>
      <dc:date>2026-04-16T20:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: USERELATIONSHIP problems with n:m-relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5152077#M187766</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="829876" data-lia-user-login="NotebookEnjoyer" class="lia-mention lia-mention-user"&gt;NotebookEnjoyer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;looks like we need a REMOVEFILTERS due to context transition, can you shar ethe pbix ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this helped, please consider giving kudos and mark as a solution&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;@me in replies or I'll lose your thread&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Want to check your DAX skills? &lt;A href="https://www.linkedin.com/company/kubisco/" target="_blank"&gt;Answer my biweekly DAX challenges on the kubisco Linkedin page&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Consider voting &lt;A href="https://community.fabric.microsoft.com/t5/Fabric-Ideas/Power-BI-Filter-Pane-as-an-icon-on-the-right-side-bar-in-on/idi-p/4728588" target="_blank"&gt;this Power BI idea&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Francesco Bergamaschi&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;MBA, M.Eng, M.Econ, Professor of BI&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2026 07:11:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5152077#M187766</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2026-04-17T07:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: USERELATIONSHIP problems with n:m-relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5154329#M187787</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="829876" data-lia-user-login="NotebookEnjoyer" class="lia-mention lia-mention-user"&gt;NotebookEnjoyer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Microsoft Fabric Forum Community.&lt;/P&gt;
&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="645372" data-lia-user-login="techies" class="lia-mention lia-mention-user"&gt;techies&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1292787" data-lia-user-login="cengizhanarslan" class="lia-mention lia-mention-user"&gt;cengizhanarslan&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1287762" data-lia-user-login="FBergamaschi" class="lia-mention lia-mention-user"&gt;FBergamaschi&lt;/a&gt;&amp;nbsp;Thanks for the inputs.&lt;/P&gt;
&lt;P&gt;I hope the information provided by users was helpful. If you still have questions, please don't hesitate to reach out to the community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2026 10:01:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5154329#M187787</guid>
      <dc:creator>v-priyankata</dc:creator>
      <dc:date>2026-04-20T10:01:47Z</dc:date>
    </item>
    <item>
      <title>Re: USERELATIONSHIP problems with n:m-relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5155443#M187810</link>
      <description>&lt;P&gt;In short, it works. (In long, I have to add a filter because for each entry there is each one positive and negative entry, canceling each other out, and I have left out of my model the dimension table by which this is filtered. But it works.)&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2026 13:18:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5155443#M187810</guid>
      <dc:creator>NotebookEnjoyer</dc:creator>
      <dc:date>2026-04-21T13:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: USERELATIONSHIP problems with n:m-relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5155446#M187811</link>
      <description>&lt;P&gt;Unfortunately I can't, because the real model contains company data (and rebuilding the whole thing as mock-up does not yet seem proportional).&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2026 13:20:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5155446#M187811</guid>
      <dc:creator>NotebookEnjoyer</dc:creator>
      <dc:date>2026-04-21T13:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: USERELATIONSHIP problems with n:m-relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5155455#M187812</link>
      <description>&lt;P&gt;Unfortunately this doesn't differentiate correctly for D1.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2026 13:24:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5155455#M187812</guid>
      <dc:creator>NotebookEnjoyer</dc:creator>
      <dc:date>2026-04-21T13:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: USERELATIONSHIP problems with n:m-relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5155476#M187813</link>
      <description>&lt;P&gt;It's not quite there yet. It doesn't differentiate by the dimension and gives double the correct sum. I'm working on it.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2026 13:37:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5155476#M187813</guid>
      <dc:creator>NotebookEnjoyer</dc:creator>
      <dc:date>2026-04-21T13:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: USERELATIONSHIP problems with n:m-relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5155512#M187814</link>
      <description>&lt;P&gt;Try&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Sum by inactive Relationship =
VAR _Keys =
    CALCULATETABLE (
        VALUES ( 'Fact_2'[Key_F2] ),
        USERELATIONSHIP ( 'Dim_1'[Key_D1], 'Fact_2'[Key_D1] )
    )
VAR Result =
    CALCULATE ( SUM ( 'Fact_1'[Value_F1] ), TREATAS ( _Keys, 'Fact_1'[Key_F2] ) )
RETURN
    Result
&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 21 Apr 2026 14:15:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5155512#M187814</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2026-04-21T14:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: USERELATIONSHIP problems with n:m-relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5155529#M187815</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Sum F1 by F2 :=
CALCULATE(
    SUM('Fact_1'[Value_F1]),
    TREATAS(
        VALUES('Fact_2'[Key_D1]),
        'Fact_1'[Key_D1]
    ),
    REMOVEFILTERS('Map1')
)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 21 Apr 2026 14:45:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5155529#M187815</guid>
      <dc:creator>Abdullahmajid1</dc:creator>
      <dc:date>2026-04-21T14:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: USERELATIONSHIP problems with n:m-relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5155778#M187816</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;you can try this.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;measure = 
CALCULATE(
  [Measure]
   ,Map1
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2026 05:47:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5155778#M187816</guid>
      <dc:creator>Xian-Zuo</dc:creator>
      <dc:date>2026-04-22T05:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: USERELATIONSHIP problems with n:m-relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5156213#M187826</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="829876" data-lia-user-login="NotebookEnjoyer" class="lia-mention lia-mention-user"&gt;NotebookEnjoyer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope everything’s going smoothly on your end. I wanted to check if the issue got sorted. if you have any other issues please reach community.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2026 04:57:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/USERELATIONSHIP-problems-with-n-m-relationship/m-p/5156213#M187826</guid>
      <dc:creator>v-priyankata</dc:creator>
      <dc:date>2026-04-23T04:57:27Z</dc:date>
    </item>
  </channel>
</rss>

