<?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: Total value in a Power BI visual not reflecting the filter applied in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4683831#M179385</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1272199" target="_self"&gt;&lt;SPAN class=""&gt;Ravitomar&lt;/SPAN&gt;&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;As per my understanding, you are close to calcuate as per row level.&lt;BR /&gt;Try below DAX expression to do with SUMX:&lt;BR /&gt;Total Sales (Fixed Total) =&lt;BR /&gt;IF(&lt;BR /&gt;ISFILTERED('Dim Name'),&lt;BR /&gt;SUMX(&lt;BR /&gt;VALUES('Dim Name'[Name]),&lt;BR /&gt;CALCULATE([Total_Sales_base], 'Sales'[Country] = "CHN")&lt;BR /&gt;),&lt;BR /&gt;[Total_Sales_base]&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;Please let me know if you have further questions.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If this reply helped solve your problem, please consider clicking "Accept as Solution" so others can benefit too.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;And if you found it useful, a quick "Kudos" is always appreciated — thanks!&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best Regards,&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Maruthi&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;LinkedIn -&amp;nbsp;&lt;/SPAN&gt;&lt;A href="http://www.linkedin.com/in/maruthi-siva-prasad/" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;http://www.linkedin.com/in/maruthi-siva-prasad/&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;X&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://x.com/maruthisp" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;Maruthi Siva Prasad - (@MaruthiSP) / X&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 08 May 2025 02:41:26 GMT</pubDate>
    <dc:creator>maruthisp</dc:creator>
    <dc:date>2025-05-08T02:41:26Z</dc:date>
    <item>
      <title>Total value in a Power BI visual not reflecting the filter applied</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4683248#M179368</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a scenrio where I need to give global access to user on Sales data on all dimensions but when he wants to check the total sames bases on sales person it should filter to specific country.&lt;BR /&gt;Table Structure :&amp;nbsp; Dim Name table has relationshp with Sales table and there are other dim table also like country and Product. Here Person Can checking Total Sales on Country and Product full but if he wants to check on Name it shold be resticted to CHN Country only.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Measure I am using :&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Total_Sales_base = SUM('Sales'[Amount]).&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;-----------Final Measure,&amp;nbsp; If We have filtered on Dim Name we are filtering it to country CHN.&lt;/P&gt;&lt;P&gt;[Total Sales] = If(&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ISFILTERED('Dim Name'),&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Calculate(Total_Sales_base, 'Sales'[Country]="CHN"),&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Calculate(Total_Sales_base)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;BR /&gt;-----------------------------------------------&lt;BR /&gt;Here We are getting expected output, but the grand total is still showing global number, not reflecting total of CHN as below :&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Name&lt;/TD&gt;&lt;TD&gt;Total Sales&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;AA&lt;/TD&gt;&lt;TD&gt;400&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;DD&lt;/TD&gt;&lt;TD&gt;346&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Total&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;2669&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;Any suggestion, what changes we can made here in the Measure or Model to reflect actual total or any other workaround.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Ravi&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 May 2025 13:06:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4683248#M179368</guid>
      <dc:creator>Ravitomar</dc:creator>
      <dc:date>2025-05-07T13:06:00Z</dc:date>
    </item>
    <item>
      <title>Re: Total value in a Power BI visual not reflecting the filter applied</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4683274#M179370</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1272199" data-lia-user-login="Ravitomar" class="lia-mention lia-mention-user"&gt;Ravitomar&lt;/a&gt;&amp;nbsp;, Try using&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DAX&lt;BR /&gt;[Total Sales] = &lt;BR /&gt;IF(&lt;BR /&gt;ISFILTERED('Dim Name'),&lt;BR /&gt;SUMX(&lt;BR /&gt;VALUES('Dim Name'),&lt;BR /&gt;CALCULATE(Total_Sales_base, 'Sales'[Country] = "CHN")&lt;BR /&gt;),&lt;BR /&gt;CALCULATE(Total_Sales_base)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Wed, 07 May 2025 13:29:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4683274#M179370</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-05-07T13:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: Total value in a Power BI visual not reflecting the filter applied</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4683831#M179385</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1272199" target="_self"&gt;&lt;SPAN class=""&gt;Ravitomar&lt;/SPAN&gt;&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;As per my understanding, you are close to calcuate as per row level.&lt;BR /&gt;Try below DAX expression to do with SUMX:&lt;BR /&gt;Total Sales (Fixed Total) =&lt;BR /&gt;IF(&lt;BR /&gt;ISFILTERED('Dim Name'),&lt;BR /&gt;SUMX(&lt;BR /&gt;VALUES('Dim Name'[Name]),&lt;BR /&gt;CALCULATE([Total_Sales_base], 'Sales'[Country] = "CHN")&lt;BR /&gt;),&lt;BR /&gt;[Total_Sales_base]&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;Please let me know if you have further questions.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If this reply helped solve your problem, please consider clicking "Accept as Solution" so others can benefit too.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;And if you found it useful, a quick "Kudos" is always appreciated — thanks!&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best Regards,&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Maruthi&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;LinkedIn -&amp;nbsp;&lt;/SPAN&gt;&lt;A href="http://www.linkedin.com/in/maruthi-siva-prasad/" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;http://www.linkedin.com/in/maruthi-siva-prasad/&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;X&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://x.com/maruthisp" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;Maruthi Siva Prasad - (@MaruthiSP) / X&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 May 2025 02:41:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4683831#M179385</guid>
      <dc:creator>maruthisp</dc:creator>
      <dc:date>2025-05-08T02:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: Total value in a Power BI visual not reflecting the filter applied</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4684191#M179400</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="526044" data-lia-user-login="maruthisp" class="lia-mention lia-mention-user"&gt;maruthisp&lt;/a&gt;&amp;nbsp;, No Luck. This is also giving the same output, total is showing global values.&lt;/P&gt;</description>
      <pubDate>Thu, 08 May 2025 07:34:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4684191#M179400</guid>
      <dc:creator>Ravitomar</dc:creator>
      <dc:date>2025-05-08T07:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: Total value in a Power BI visual not reflecting the filter applied</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4684385#M179406</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1272199" data-lia-user-login="Ravitomar" class="lia-mention lia-mention-user"&gt;Ravitomar&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First load the data in Power BI In, then in Model View, create a &lt;STRONG&gt;one-to-many, single-direction&lt;/STRONG&gt; relationship from Dim Name[ID] to Sales[NameID]. This links each sales record to the correct name and ensures filters flow from the dimension to the fact table for accurate reporting.&lt;BR /&gt;In your Sales table, create the base measure: Total_Sales_base = SUM('Sales'[Amount])&lt;BR /&gt;&lt;BR /&gt;Create this new measure to apply the CHN filter only when Name is used:&lt;BR /&gt;Total Sales =&lt;/P&gt;
&lt;P&gt;IF (&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; HASONEVALUE('DimName'[Name]),&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; CALCULATE([Total_Sales_base], 'Sales'[Country] = "CHN"),&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; SUMX(&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; VALUES('DimName'[Name]),&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; CALCULATE([Total_Sales_base], 'Sales'[Country] = "CHN")&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; )&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;
&lt;P&gt;Next, create a &lt;STRONG&gt;Table Visual&lt;/STRONG&gt; and add DimName'[Name] and [Total Sales] measure &lt;BR /&gt;Following these steps will give you the expected result.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Additionally, I have included the PBIX file that I created using the provided sample data. Kindly review it and confirm whether it aligns with your expectations.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;If this solution worked for you, kindly mark it as Accept as Solution and feel free to give a Kudos, it would be much appreciated!&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 May 2025 09:40:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4684385#M179406</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2025-05-08T09:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: Total value in a Power BI visual not reflecting the filter applied</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4684765#M179428</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="882995" data-lia-user-login="v-sgandrathi" class="lia-mention lia-mention-user"&gt;v-sgandrathi&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Your solution working fine for Name Dimension but it is restrcting numbers for other dimension also like Country and Product. As I mentioned it should give global number for other dimension like if we want to display on Country or Product the output should be below :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Here total while checking on Name is still 2669 while it should be 746. For other Dim it should be 2669.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;</description>
      <pubDate>Thu, 08 May 2025 12:04:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4684765#M179428</guid>
      <dc:creator>Ravitomar</dc:creator>
      <dc:date>2025-05-08T12:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: Total value in a Power BI visual not reflecting the filter applied</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4684931#M179438</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1272199" data-lia-user-login="Ravitomar" class="lia-mention lia-mention-user"&gt;Ravitomar&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The issue you're facing is due to the current DAX measure applying the "CHN" country filter globally, even when you're analyzing by other dimensions like Country or Product. To resolve this, you need to modify your measure so that the "CHN" filter is only applied when the report is grouped by the &lt;STRONG&gt;Name&lt;/STRONG&gt; dimension, and not in other contexts. The existing measure uses HASONEVALUE, which doesn't control the visual context precisely enough, especially for grand totals. Instead, replace HASONEVALUE('DimName'[Name]) with ISINSCOPE('DimName'[Name]), which accurately checks whether the visual is currently displaying data at the Name level.&lt;BR /&gt;&lt;BR /&gt;This change ensures that the "CHN" filter is applied &lt;STRONG&gt;only&lt;/STRONG&gt; when the Name dimension is being used in the visual, while for other dimensions like Country or Product, the measure will return the global sales total without restriction. This way, your totals and breakdowns will behave correctly in all visual contexts.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;Happy to help! If this addressed your concern, marking it as "Accepted Solution" and giving us "kudos" would be valuable for others in the community.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 08 May 2025 12:36:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4684931#M179438</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2025-05-08T12:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Total value in a Power BI visual not reflecting the filter applied</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4688870#M179572</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1272199" data-lia-user-login="Ravitomar" class="lia-mention lia-mention-user"&gt;Ravitomar&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I ask if you have gotten this issue resolved?&lt;/P&gt;
&lt;P&gt;If it is solved, please mark the helpful reply or share your solution and accept it as solution, it will be helpful for other members of the community who have similar problems as yours to solve it faster.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 12 May 2025 09:55:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4688870#M179572</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2025-05-12T09:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: Total value in a Power BI visual not reflecting the filter applied</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4689300#M179586</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="882995" data-lia-user-login="v-sgandrathi" class="lia-mention lia-mention-user"&gt;v-sgandrathi&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Thanks for following of on this, but no luck yet. I have tried revised solution also.&lt;/P&gt;</description>
      <pubDate>Mon, 12 May 2025 13:13:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4689300#M179586</guid>
      <dc:creator>Ravitomar</dc:creator>
      <dc:date>2025-05-12T13:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: Total value in a Power BI visual not reflecting the filter applied</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4693402#M179732</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1272199" data-lia-user-login="Ravitomar" class="lia-mention lia-mention-user"&gt;Ravitomar&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Try using this measure for the desired answer:&lt;/P&gt;
&lt;P&gt;[Total Sales] =&amp;nbsp;&lt;BR /&gt;IF(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ISINSCOPE('Dim Name'[Name]),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE([Total_Sales_base], KEEPFILTERS('Sales'[Country] = "CHN")),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Total_Sales_base]&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;I have included the PBIX file that I created using the provided sample data. Kindly review it and confirm whether it aligns with your expectations.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;If this solution worked for you, kindly mark it as Accept as Solution and feel free to give a Kudos, it would be much appreciated!&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;SPAN data-teams="true"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2025 06:03:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4693402#M179732</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2025-05-15T06:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: Total value in a Power BI visual not reflecting the filter applied</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4697175#M179904</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1272199" data-lia-user-login="Ravitomar" class="lia-mention lia-mention-user"&gt;Ravitomar&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As we did not get a response, may I know if the above reply could clarify your issue, or could you please help confirm if we may help you with anything else?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And if the provided information meets your requirements, you can Accept the solution and also give Kudos on that reply. It helps other users who are searching for this same information and find the information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your understanding and patience will be appreciated.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 18 May 2025 11:17:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4697175#M179904</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2025-05-18T11:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: Total value in a Power BI visual not reflecting the filter applied</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4698131#M179956</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="882995" data-lia-user-login="v-sgandrathi" class="lia-mention lia-mention-user"&gt;v-sgandrathi&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Thanks for the help, It couldn't resolve the issue fully but helps a lot. It looks like having single easure is not a solution here. I created two measures here, 1 for global access and 1 for Name dimension only.&lt;BR /&gt;For Global measure, I put restriction on Name dimension so it shows blank when check on Name level.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Mon, 19 May 2025 09:32:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-in-a-Power-BI-visual-not-reflecting-the-filter/m-p/4698131#M179956</guid>
      <dc:creator>Ravitomar</dc:creator>
      <dc:date>2025-05-19T09:32:40Z</dc:date>
    </item>
  </channel>
</rss>

