<?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: How to use 2 filtered measures as input for another measure and put them in the same page in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-2-filtered-measures-as-input-for-another-measure-and/m-p/4332762#M172011</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Use the ALL function&lt;/STRONG&gt; to remove the slicers' influence on Measure C. The ALL function clears filters on a specified table or column, allowing you to calculate &lt;STRONG&gt;Measure C&lt;/STRONG&gt; without being affected by the slicers.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Modify Measure C to use the unfiltered versions of Measure A and Measure B.&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Here's how to modify your measures:&lt;/P&gt;&lt;H3&gt;Measure A:&lt;/H3&gt;&lt;P&gt;Let's assume your &lt;STRONG&gt;Measure A&lt;/STRONG&gt; is something like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;Measure A = SUM('Table'[ColumnA])&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;This measure is filtered by &lt;STRONG&gt;Slicer A&lt;/STRONG&gt;.&lt;/P&gt;&lt;H3&gt;Measure B:&lt;/H3&gt;&lt;P&gt;Similarly, &lt;STRONG&gt;Measure B&lt;/STRONG&gt; would look like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;Measure B = SUM('Table'[ColumnB])&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;This measure is filtered by &lt;STRONG&gt;Slicer B&lt;/STRONG&gt;.&lt;/P&gt;&lt;H3&gt;Measure C:&lt;/H3&gt;&lt;P&gt;Now, you need to modify &lt;STRONG&gt;Measure C&lt;/STRONG&gt; to use &lt;STRONG&gt;Measure A&lt;/STRONG&gt; and &lt;STRONG&gt;Measure B&lt;/STRONG&gt; without the slicers affecting it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;Measure C = VAR FilteredMeasureA = CALCULATE([Measure A], ALL('Table'[ColumnA])) VAR FilteredMeasureB = CALCULATE([Measure B], ALL('Table'[ColumnB])) RETURN IF(FilteredMeasureB &amp;lt;&amp;gt; 0, (FilteredMeasureA - FilteredMeasureB) / FilteredMeasureB, 0)&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;H3&gt;Result:&lt;/H3&gt;&lt;P&gt;This approach ensures that &lt;STRONG&gt;Measure C&lt;/STRONG&gt; is calculated based on &lt;STRONG&gt;Measure A&lt;/STRONG&gt; and &lt;STRONG&gt;Measure B&lt;/STRONG&gt;, but the slicers will not affect &lt;STRONG&gt;Measure C&lt;/STRONG&gt;. It should display the correct result instead of returning blank or zero.&lt;/P&gt;&lt;H3&gt;Putting Measures on the Same Page:&lt;/H3&gt;&lt;P&gt;You can add &lt;STRONG&gt;Measure A&lt;/STRONG&gt;, &lt;STRONG&gt;Measure B&lt;/STRONG&gt;, and &lt;STRONG&gt;Measure C&lt;/STRONG&gt; to the same report page. As &lt;STRONG&gt;Measure C&lt;/STRONG&gt; is calculated without considering the slicers, it will reflect the desired output regardless of the slicer selections.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 17 Dec 2024 09:50:59 GMT</pubDate>
    <dc:creator>123abc</dc:creator>
    <dc:date>2024-12-17T09:50:59Z</dc:date>
    <item>
      <title>How to use 2 filtered measures as input for another measure and put them in the same page</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-2-filtered-measures-as-input-for-another-measure-and/m-p/4332748#M172009</link>
      <description>&lt;P&gt;I have 2 slicers, slicer A and B; 3 measures, measure A, B and C&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;column A and B are in the same table&lt;BR /&gt;&lt;BR /&gt;slicer A is using column A&lt;BR /&gt;slicer B is using column B, duplicated from column A&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;slicer A filters measure A&lt;/P&gt;&lt;P&gt;slicer B filters measure B&lt;BR /&gt;&lt;BR /&gt;measure C uses measure A and B as input after filtering measure A and B with slicer A and B, with this calculation:&lt;/P&gt;&lt;P&gt;measure C = (measure A - measure B)/measure B&lt;BR /&gt;&lt;BR /&gt;I need to put all of them in the same page, how to show the result of measure C without being affected by slicer A and B? turning off interaction between measure C and the slicers will return blank values, while turning on will return 0&lt;BR /&gt;&lt;BR /&gt;everything is correct except measure C showing either blank or 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please provide help, thanks&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2024 09:44:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-2-filtered-measures-as-input-for-another-measure-and/m-p/4332748#M172009</guid>
      <dc:creator>witheringarc5</dc:creator>
      <dc:date>2024-12-17T09:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to use 2 filtered measures as input for another measure and put them in the same page</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-2-filtered-measures-as-input-for-another-measure-and/m-p/4332762#M172011</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Use the ALL function&lt;/STRONG&gt; to remove the slicers' influence on Measure C. The ALL function clears filters on a specified table or column, allowing you to calculate &lt;STRONG&gt;Measure C&lt;/STRONG&gt; without being affected by the slicers.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Modify Measure C to use the unfiltered versions of Measure A and Measure B.&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Here's how to modify your measures:&lt;/P&gt;&lt;H3&gt;Measure A:&lt;/H3&gt;&lt;P&gt;Let's assume your &lt;STRONG&gt;Measure A&lt;/STRONG&gt; is something like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;Measure A = SUM('Table'[ColumnA])&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;This measure is filtered by &lt;STRONG&gt;Slicer A&lt;/STRONG&gt;.&lt;/P&gt;&lt;H3&gt;Measure B:&lt;/H3&gt;&lt;P&gt;Similarly, &lt;STRONG&gt;Measure B&lt;/STRONG&gt; would look like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;Measure B = SUM('Table'[ColumnB])&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;This measure is filtered by &lt;STRONG&gt;Slicer B&lt;/STRONG&gt;.&lt;/P&gt;&lt;H3&gt;Measure C:&lt;/H3&gt;&lt;P&gt;Now, you need to modify &lt;STRONG&gt;Measure C&lt;/STRONG&gt; to use &lt;STRONG&gt;Measure A&lt;/STRONG&gt; and &lt;STRONG&gt;Measure B&lt;/STRONG&gt; without the slicers affecting it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;Measure C = VAR FilteredMeasureA = CALCULATE([Measure A], ALL('Table'[ColumnA])) VAR FilteredMeasureB = CALCULATE([Measure B], ALL('Table'[ColumnB])) RETURN IF(FilteredMeasureB &amp;lt;&amp;gt; 0, (FilteredMeasureA - FilteredMeasureB) / FilteredMeasureB, 0)&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;H3&gt;Result:&lt;/H3&gt;&lt;P&gt;This approach ensures that &lt;STRONG&gt;Measure C&lt;/STRONG&gt; is calculated based on &lt;STRONG&gt;Measure A&lt;/STRONG&gt; and &lt;STRONG&gt;Measure B&lt;/STRONG&gt;, but the slicers will not affect &lt;STRONG&gt;Measure C&lt;/STRONG&gt;. It should display the correct result instead of returning blank or zero.&lt;/P&gt;&lt;H3&gt;Putting Measures on the Same Page:&lt;/H3&gt;&lt;P&gt;You can add &lt;STRONG&gt;Measure A&lt;/STRONG&gt;, &lt;STRONG&gt;Measure B&lt;/STRONG&gt;, and &lt;STRONG&gt;Measure C&lt;/STRONG&gt; to the same report page. As &lt;STRONG&gt;Measure C&lt;/STRONG&gt; is calculated without considering the slicers, it will reflect the desired output regardless of the slicer selections.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2024 09:50:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-2-filtered-measures-as-input-for-another-measure-and/m-p/4332762#M172011</guid>
      <dc:creator>123abc</dc:creator>
      <dc:date>2024-12-17T09:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to use 2 filtered measures as input for another measure and put them in the same page</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-2-filtered-measures-as-input-for-another-measure-and/m-p/4332807#M172015</link>
      <description>&lt;P&gt;I'm using the exact method you just shared, it doesn't work, still show as 0&lt;/P&gt;&lt;P&gt;turning on/off interaction has no effect&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2024 10:12:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-2-filtered-measures-as-input-for-another-measure-and/m-p/4332807#M172015</guid>
      <dc:creator>witheringarc5</dc:creator>
      <dc:date>2024-12-17T10:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to use 2 filtered measures as input for another measure and put them in the same page</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-2-filtered-measures-as-input-for-another-measure-and/m-p/4333078#M172029</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If using REMOVEFILTERS or ALLSELECTED doesn't resolve the issue and Measure C still returns 0, it's likely that &lt;STRONG&gt;Measure A&lt;/STRONG&gt; or &lt;STRONG&gt;Measure B&lt;/STRONG&gt; evaluates to 0 or blank under the slicer context. This could happen if filters are being applied in an unintended way.&lt;/P&gt;&lt;P&gt;Here's an alternative method to ensure that &lt;STRONG&gt;Measure C&lt;/STRONG&gt; works correctly without being affected by slicers:&lt;/P&gt;&lt;HR /&gt;&lt;H3&gt;Alternative Solution: Using Variables with Slicer Context Explicitly Preserved&lt;/H3&gt;&lt;P&gt;Instead of relying on REMOVEFILTERS, explicitly &lt;STRONG&gt;capture the filtered values of Measure A and Measure B&lt;/STRONG&gt; in variables.&lt;/P&gt;&lt;P&gt;Modify &lt;STRONG&gt;Measure C&lt;/STRONG&gt; as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;Measure C = VAR FilteredMeasureA = CALCULATE( [Measure A], ALL('Table'[Column B]) ) VAR FilteredMeasureB = CALCULATE( [Measure B], ALL('Table'[Column A]) ) RETURN IF( FilteredMeasureB &amp;lt;&amp;gt; 0, (FilteredMeasureA - FilteredMeasureB) / FilteredMeasureB, BLANK() )&lt;/DIV&gt;&lt;/DIV&gt;&lt;HR /&gt;&lt;H3&gt;Key Changes:&lt;/H3&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;ALL&lt;/STRONG&gt; instead of REMOVEFILTERS or ALLSELECTED:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;ALL('Table'[Column A]) clears only the filter from Column A (slicer A), and ALL('Table'[Column B]) clears Column B (slicer B). This isolates the behavior.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Using Variables&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;We store the &lt;STRONG&gt;filtered measure values&lt;/STRONG&gt; into FilteredMeasureA and FilteredMeasureB. This ensures we are capturing values explicitly while bypassing cross-filter issues.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Testing for Division&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;A safeguard ensures that Measure B is non-zero before division.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;HR /&gt;&lt;H3&gt;Why It Should Work:&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Measure A&lt;/STRONG&gt; retains its slicer A context, and column B slicer is ignored.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Measure B&lt;/STRONG&gt; retains its slicer B context, and column A slicer is ignored.&lt;/LI&gt;&lt;LI&gt;By removing filters only from &lt;STRONG&gt;one specific column&lt;/STRONG&gt;, the slicer filtering each measure works independently without overlapping or zeroing out the values.&lt;/LI&gt;&lt;/UL&gt;&lt;HR /&gt;&lt;H3&gt;Debugging Steps:&lt;/H3&gt;&lt;OL&gt;&lt;LI&gt;Add &lt;STRONG&gt;Measure A&lt;/STRONG&gt; and &lt;STRONG&gt;Measure B&lt;/STRONG&gt; to a table visual alongside their slicers to confirm they return the correct values.&lt;/LI&gt;&lt;LI&gt;Use a card visual to display the output of &lt;STRONG&gt;Measure C&lt;/STRONG&gt; and verify it is not impacted by slicer interaction.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;If you still encounter issues, it might be due to data model relationships or filter propagation. Let me know, and I can guide you further!&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2024 12:57:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-2-filtered-measures-as-input-for-another-measure-and/m-p/4333078#M172029</guid>
      <dc:creator>123abc</dc:creator>
      <dc:date>2024-12-17T12:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to use 2 filtered measures as input for another measure and put them in the same page</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-2-filtered-measures-as-input-for-another-measure-and/m-p/4334369#M172092</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="890499" data-lia-user-login="witheringarc5" class="lia-mention lia-mention-user"&gt;witheringarc5&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When does there be a blank or 0? Does it happen when you select different values in the two slicers?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I recommend that you create calculated tables. This is because you are using two columns with the same value as Slicers, and once the values selected in the two Slicers are different, the table returns a blank row(Slicer will filter table according to selected value).&amp;nbsp;This can be solved by using calculated tables, isolating the filters for A and B.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is my test for your reference.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;TableA = VALUES('Table'[ColumnA])&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;TableB = VALUES('Table'[ColumnB])&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Measure A = IF(ISFILTERED(TableA[ColumnA]),CALCULATE(SUM('Table'[ColumnA]),'Table','Table'[ColumnA] in ALLSELECTED(TableA[ColumnA])),0)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Measure B = IF(ISFILTERED(TableB[ColumnB]),CALCULATE(SUM('Table'[ColumnB]),'Table','Table'[ColumnB] in ALLSELECTED(TableB[ColumnB])),0)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Measure C = ([Measure A]-[Measure B])/[Measure B]&lt;/LI-CODE&gt;
&lt;P&gt;When I selected values in two Slicers, the result showed as following.&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;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Mengmeng Li&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2024 06:42:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-2-filtered-measures-as-input-for-another-measure-and/m-p/4334369#M172092</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-18T06:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to use 2 filtered measures as input for another measure and put them in the same page</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-2-filtered-measures-as-input-for-another-measure-and/m-p/4334716#M172101</link>
      <description>&lt;P&gt;I tried to use your method, measure C is still returning 0 even after I removed the if statement. It seems like when I put all the visuals together, both slicers are filtering it.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;When nothing on the page is interacting with measure C, it returns 0 because it uses all the values of column A and B for calculation, which returns the same number for measure A and B, i.e. [measure A]-[measure B]=0, zero divided by any number is still zero.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, there are two interesting phenomena when I only activate interaction between measure C and slicer A/B while both measure A and B are filtered and returns correct values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I only activate the interaction between measure C and slicer A, it returns 0, which should not be like this because the expected outcome is that measure A will return a number smaller than that of measure B, measure C should return a negative value. On the other hand, only activating interaction between measure C and slicer B should return a positive value but zero is returned instead.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My hypothesis is that, since measure A and B are using the same column for calculation but they are using different slicers with different columns, so there are 2 sets of different values from different columns filtering the same column and causes the DAX to not work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My ideals: it would be awesome if measure C can use the filtered results of measure A and B without being affected by slicers and the problems mentioned.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not sure if my DAX knowledge need to drill down to the equivalent level of understanding how java compiler compiles java code to machine code. If yes, that would be very time-consuming but I would do it at my free time, and I hope you guys can guide me where to start or provide useful resources.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or maybe this is a limitation of power bi.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2024 08:55:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-2-filtered-measures-as-input-for-another-measure-and/m-p/4334716#M172101</guid>
      <dc:creator>witheringarc5</dc:creator>
      <dc:date>2024-12-18T08:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to use 2 filtered measures as input for another measure and put them in the same page</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-2-filtered-measures-as-input-for-another-measure-and/m-p/4340408#M172341</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="890499" data-lia-user-login="witheringarc5" class="lia-mention lia-mention-user"&gt;witheringarc5&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, it's really because you're using two columns in the same table as filters. Turning off the interaction doesn't turn off the filter's filtering of the table, you should create calculated tables that copies the values of these two columns, and then uses the columns in the calculated table as filters. Please refer to my previous reply for detailed steps. If you have any questions, please feel free to contact me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Mengmeng Li&lt;/P&gt;</description>
      <pubDate>Mon, 23 Dec 2024 07:13:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-2-filtered-measures-as-input-for-another-measure-and/m-p/4340408#M172341</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-23T07:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to use 2 filtered measures as input for another measure and put them in the same page</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-2-filtered-measures-as-input-for-another-measure-and/m-p/4340436#M172345</link>
      <description>&lt;P&gt;my company's power bi service is on halt due to capacity issues, the semantic model cannot be loaded, with xmas holidays coming up, probably cannot test until next year&lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Merry Xmas&lt;span class="lia-unicode-emoji" title=":confetti_ball:"&gt;🎊&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Dec 2024 07:23:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-2-filtered-measures-as-input-for-another-measure-and/m-p/4340436#M172345</guid>
      <dc:creator>witheringarc5</dc:creator>
      <dc:date>2024-12-23T07:23:35Z</dc:date>
    </item>
  </channel>
</rss>

