<?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 Measure as visual level filter in matrix not working as expected in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-visual-level-filter-in-matrix-not-working-as-expected/m-p/4654125#M178166</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a report with multiple cascading KPIs (see sample below). The goal is to compare these KPIs across a selection of machines.&lt;/P&gt;&lt;P&gt;The reason for choosing a marix, is that the number of KPIs is quite large and they are grouped under a parent and do not neccessarily share the same calculation method.&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;The problem I have is that I want to make the selection of columns in the matrix dynamic, based on a measure.&amp;nbsp;&lt;BR /&gt;Something like below, where based on a certain measure, it should show the column yes or no.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;MeasureFilter = IF(MAX(EQUIPMENT[EQUIPMENT_NR]) = [DynamicallySelectedEquipment], 1, 0)
-- DynamicallySelectedEquipment hardcoded to "BBBB" here &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I add this measure as a filter to the visual. It becomes completely blank.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;However, when I add this measure as a value it returns the expected results for each row. How do I filter a matrix on a measure like this? Where it would only show column BBBB in this case.&amp;nbsp;I checked online and read that it should evaluate the measure expression for each row in the matrix and filter rows accordingly. But it doesn't seem to do that here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Possibly because of the hierarchical measure I have to display the cascading KPIs?&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;Below the measure used to get the different KPI values:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;HierarchicalMeasure = 

SWITCH(
    TRUE,
    ISINSCOPE(MeasureHierarchy[Level2]), 
        SWITCH(
            TRUE,
            SELECTEDVALUE(MeasureHierarchy[Level2]) = "KPI1.1", "Value KPI1.1",
            SELECTEDVALUE(MeasureHierarchy[Level2]) = "KPI1.2", "Value KPI1.2",

            SELECTEDVALUE(MeasureHierarchy[Level2]) = "KPI2.1", "Value KPI2.1",
            SELECTEDVALUE(MeasureHierarchy[Level2]) = "KPI2.2", "Value KPI2.2",
            BLANK()
        ),
    ISINSCOPE(MeasureHierarchy[Level1]), 
        SWITCH(
            TRUE, 
            SELECTEDVALUE(MeasureHierarchy[Level1]) = "KPI1", "Value KPI1",
            SELECTEDVALUE(MeasureHierarchy[Level1]) = "KPI2", "Value KPI2",
            BLANK()
        )
)&lt;/LI-CODE&gt;&lt;P&gt;Where MeasureHierarchy is a static table defining the KPI names and hierarchy structure.&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Level1&lt;/TD&gt;&lt;TD&gt;Level2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;KPI1&lt;/TD&gt;&lt;TD&gt;KPI1.1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;KPI1&lt;/TD&gt;&lt;TD&gt;KPI1.2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;KPI2&lt;/TD&gt;&lt;TD&gt;KPI2.1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;KPI2&lt;/TD&gt;&lt;TD&gt;KPI2.2&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would appreciate if someone could help or suggest an alternative way to approach this problem.&lt;/P&gt;</description>
    <pubDate>Tue, 15 Apr 2025 14:25:51 GMT</pubDate>
    <dc:creator>sietseasml</dc:creator>
    <dc:date>2025-04-15T14:25:51Z</dc:date>
    <item>
      <title>Measure as visual level filter in matrix not working as expected</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-visual-level-filter-in-matrix-not-working-as-expected/m-p/4654125#M178166</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a report with multiple cascading KPIs (see sample below). The goal is to compare these KPIs across a selection of machines.&lt;/P&gt;&lt;P&gt;The reason for choosing a marix, is that the number of KPIs is quite large and they are grouped under a parent and do not neccessarily share the same calculation method.&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;The problem I have is that I want to make the selection of columns in the matrix dynamic, based on a measure.&amp;nbsp;&lt;BR /&gt;Something like below, where based on a certain measure, it should show the column yes or no.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;MeasureFilter = IF(MAX(EQUIPMENT[EQUIPMENT_NR]) = [DynamicallySelectedEquipment], 1, 0)
-- DynamicallySelectedEquipment hardcoded to "BBBB" here &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I add this measure as a filter to the visual. It becomes completely blank.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;However, when I add this measure as a value it returns the expected results for each row. How do I filter a matrix on a measure like this? Where it would only show column BBBB in this case.&amp;nbsp;I checked online and read that it should evaluate the measure expression for each row in the matrix and filter rows accordingly. But it doesn't seem to do that here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Possibly because of the hierarchical measure I have to display the cascading KPIs?&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;Below the measure used to get the different KPI values:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;HierarchicalMeasure = 

SWITCH(
    TRUE,
    ISINSCOPE(MeasureHierarchy[Level2]), 
        SWITCH(
            TRUE,
            SELECTEDVALUE(MeasureHierarchy[Level2]) = "KPI1.1", "Value KPI1.1",
            SELECTEDVALUE(MeasureHierarchy[Level2]) = "KPI1.2", "Value KPI1.2",

            SELECTEDVALUE(MeasureHierarchy[Level2]) = "KPI2.1", "Value KPI2.1",
            SELECTEDVALUE(MeasureHierarchy[Level2]) = "KPI2.2", "Value KPI2.2",
            BLANK()
        ),
    ISINSCOPE(MeasureHierarchy[Level1]), 
        SWITCH(
            TRUE, 
            SELECTEDVALUE(MeasureHierarchy[Level1]) = "KPI1", "Value KPI1",
            SELECTEDVALUE(MeasureHierarchy[Level1]) = "KPI2", "Value KPI2",
            BLANK()
        )
)&lt;/LI-CODE&gt;&lt;P&gt;Where MeasureHierarchy is a static table defining the KPI names and hierarchy structure.&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Level1&lt;/TD&gt;&lt;TD&gt;Level2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;KPI1&lt;/TD&gt;&lt;TD&gt;KPI1.1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;KPI1&lt;/TD&gt;&lt;TD&gt;KPI1.2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;KPI2&lt;/TD&gt;&lt;TD&gt;KPI2.1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;KPI2&lt;/TD&gt;&lt;TD&gt;KPI2.2&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would appreciate if someone could help or suggest an alternative way to approach this problem.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 14:25:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-visual-level-filter-in-matrix-not-working-as-expected/m-p/4654125#M178166</guid>
      <dc:creator>sietseasml</dc:creator>
      <dc:date>2025-04-15T14:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: Measure as visual level filter in matrix not working as expected</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-visual-level-filter-in-matrix-not-working-as-expected/m-p/4654205#M178168</link>
      <description>&lt;P&gt;SQLBI have an excellent article at&amp;nbsp;&lt;A href="https://www.sqlbi.com/articles/deep-dive-into-measure-filters-in-power-bi-desktop/" target="_self"&gt;https://www.sqlbi.com/articles/deep-dive-into-measure-filters-in-power-bi-desktop/&lt;/A&gt;&amp;nbsp;detailing the subtle differences when a measure is used as a filter when it is and is not shown in the values as well.&lt;/P&gt;
&lt;P&gt;I think the simplest solution in your case would be to add the measure as a value as well as a filter, and set the width of the column in the matrix to 0.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 14:58:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-visual-level-filter-in-matrix-not-working-as-expected/m-p/4654205#M178168</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2025-04-15T14:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: Measure as visual level filter in matrix not working as expected</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-visual-level-filter-in-matrix-not-working-as-expected/m-p/4654228#M178169</link>
      <description>&lt;P&gt;Thanks for your reply. Article seems exactly what I am looking for, I will read through it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Adding the measure as both a value and filter unfortunately does not work immediately. It is at least populating values for each column now, but the hierichal measure is still blank.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 15:09:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-visual-level-filter-in-matrix-not-working-as-expected/m-p/4654228#M178169</guid>
      <dc:creator>sietseasml</dc:creator>
      <dc:date>2025-04-15T15:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: Measure as visual level filter in matrix not working as expected</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-visual-level-filter-in-matrix-not-working-as-expected/m-p/4655277#M178214</link>
      <description>&lt;P&gt;Read through the article, but couldn't make it work 100% yet.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I looked through the DAX query with performance analyzer, I can get the expected results when I add one single line in the query.&amp;nbsp;I'm not sure why this is not there when the DAX query is generated for the visual. Is there a way to adjust the dax code generated?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In __ValueFilterDM3, without my line, it summarizes on 'MeasureHierarchy' columns and then filters based on MeasureFilter. But I still need the EQUIPMENT_NR context here. Any clue on how to add this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Apr 2025 08:35:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-visual-level-filter-in-matrix-not-working-as-expected/m-p/4655277#M178214</guid>
      <dc:creator>sietseasml</dc:creator>
      <dc:date>2025-04-16T08:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: Measure as visual level filter in matrix not working as expected</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-visual-level-filter-in-matrix-not-working-as-expected/m-p/4662735#M178556</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="533507" data-lia-user-login="sietseasml" class="lia-mention lia-mention-user"&gt;sietseasml&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Thank you for reaching out to us on Microsoft Fabric Community Forum!&lt;BR /&gt;&lt;BR /&gt;1.Try using below measure and add it in Values field. I tried to recreate it locally.Please find the attached file.&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;HierarchicalMeasure = &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;SWITCH&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; TRUE,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ISINSCOPE&lt;/SPAN&gt;&lt;SPAN&gt;(MeasureHierarchy[Level2]), &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;SWITCH&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; &amp;nbsp; &amp;nbsp; TRUE,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(MeasureHierarchy[Level2]) = &lt;/SPAN&gt;&lt;SPAN&gt;"KPI1.1"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(KPIValues[Value]),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(MeasureHierarchy[Level2]) = &lt;/SPAN&gt;&lt;SPAN&gt;"KPI1.2"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(KPIValues[Value]),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(MeasureHierarchy[Level2]) = &lt;/SPAN&gt;&lt;SPAN&gt;"KPI2.1"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(KPIValues[Value]),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(MeasureHierarchy[Level2]) = &lt;/SPAN&gt;&lt;SPAN&gt;"KPI2.2"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(KPIValues[Value]),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;BLANK&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;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ISINSCOPE&lt;/SPAN&gt;&lt;SPAN&gt;(MeasureHierarchy[Level1]), &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;SWITCH&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; &amp;nbsp; &amp;nbsp; TRUE, &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(MeasureHierarchy[Level1]) = &lt;/SPAN&gt;&lt;SPAN&gt;"KPI1"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(KPIValues[Value]),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(MeasureHierarchy[Level1]) = &lt;/SPAN&gt;&lt;SPAN&gt;"KPI2"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(KPIValues[Value]),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;BLANK&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;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;img /&gt;
&lt;P&gt;&lt;BR /&gt;If this solution meets your requirement,consider accepting it as solution.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Pallavi.&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 22 Apr 2025 09:40:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-visual-level-filter-in-matrix-not-working-as-expected/m-p/4662735#M178556</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-04-22T09:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: Measure as visual level filter in matrix not working as expected</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-visual-level-filter-in-matrix-not-working-as-expected/m-p/4670199#M178880</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="533507" data-lia-user-login="sietseasml" class="lia-mention lia-mention-user"&gt;sietseasml&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;I wanted to check in on your situation regarding the issue. Have you resolved it? If you have, please consider marking the reply that helped you or sharing your solution. It would be greatly appreciated by others in the community who may have the same question.&lt;BR /&gt;Thank you.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 07:34:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-visual-level-filter-in-matrix-not-working-as-expected/m-p/4670199#M178880</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-04-28T07:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Measure as visual level filter in matrix not working as expected</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-visual-level-filter-in-matrix-not-working-as-expected/m-p/4677106#M179126</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="533507" data-lia-user-login="sietseasml" class="lia-mention lia-mention-user"&gt;sietseasml&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Could you please confirm if the issue has been resolved on your end?&amp;nbsp; If a solution has been found, it would be greatly appreciated if you could share your insights with the community. This would be helpful for other members who may encounter similar issues.&lt;BR /&gt;Thank you for your understanding and assistance.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 May 2025 08:50:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-visual-level-filter-in-matrix-not-working-as-expected/m-p/4677106#M179126</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-02T08:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: Measure as visual level filter in matrix not working as expected</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-visual-level-filter-in-matrix-not-working-as-expected/m-p/4679772#M179249</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="533507" data-lia-user-login="sietseasml" class="lia-mention lia-mention-user"&gt;sietseasml&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;I wanted to check and see if you had a chance to review our previous response. Please let me know if everything is sorted or if you need any further assistance.&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 08:40:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-visual-level-filter-in-matrix-not-working-as-expected/m-p/4679772#M179249</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-05T08:40:49Z</dc:date>
    </item>
  </channel>
</rss>

