<?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: Incorrect Grand Totals - Need a Custom Measure to Filter by Multiple Criteria in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Grand-Totals-Need-a-Custom-Measure-to-Filter-by/m-p/1284529#M21951</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="179989" data-lia-user-login="saraMissBI" class="lia-mention lia-mention-user"&gt;saraMissBI&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The equivalent code is mentioned in the "remarks" section of the SELECTEDVALUE page, and I'll paste it here as well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;An equivalent expression for&amp;nbsp;SELECTEDVALUE(&amp;lt;columnName&amp;gt;, &amp;lt;alternateResult&amp;gt;)&lt;SPAN&gt;&amp;nbsp;is:&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IF(HASONEVALUE(&amp;lt;columnName&amp;gt;), VALUES(&amp;lt;columnName&amp;gt;), &amp;lt;alternateResult&amp;gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for your wonderful solution!&lt;/P&gt;</description>
    <pubDate>Mon, 10 Aug 2020 13:33:07 GMT</pubDate>
    <dc:creator>DangerMan</dc:creator>
    <dc:date>2020-08-10T13:33:07Z</dc:date>
    <item>
      <title>Incorrect Grand Totals - Need a Custom Measure to Filter by Multiple Criteria</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Grand-Totals-Need-a-Custom-Measure-to-Filter-by/m-p/1265309#M21184</link>
      <description>&lt;P&gt;Help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm stuck trying to get the proper Grand Totals for my data.&amp;nbsp; I have shared some greatly simplified example data below.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have System Descriptions that are used across multiple Customers, and different Products that are used in the Systems.&amp;nbsp; The Products can only be used in one System for each Customer, but they can be in different Systems for different Customers.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do not want repeating System Cost to be summed, as the System Cost is fixed regardless of how many Products are associated with the System.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created the following Measure to get the System Cost, and it works for Customer Subtotals, but not for Grand Totals.&amp;nbsp; I think this is because the Measure takes an AVERAGE across the different Customers.&amp;nbsp; I believe I need a second logic function to pull out the individual System Costs for each CUSTOMER.&amp;nbsp; I have tried using DISTINCT, but I can't get it to work...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;=SUMX( SUMMARIZE( 'Table1', [System Description], "Unique System Cost", AVERAGE( 'Table1'[System Cost] ) ), [Unique System Cost] )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sample Source Data&lt;/P&gt;&lt;P&gt;&amp;nbsp;Customer NameSystem DescriptionProduct DescriptionSystem CostProduct Cost&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Customer 1&lt;/TD&gt;&lt;TD&gt;Fire System&lt;/TD&gt;&lt;TD&gt;Product 1&lt;/TD&gt;&lt;TD&gt;5000&lt;/TD&gt;&lt;TD&gt;1000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Customer 1&lt;/TD&gt;&lt;TD&gt;Water System&lt;/TD&gt;&lt;TD&gt;Product 2&lt;/TD&gt;&lt;TD&gt;10000&lt;/TD&gt;&lt;TD&gt;2000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Customer 1&lt;/TD&gt;&lt;TD&gt;Air System&lt;/TD&gt;&lt;TD&gt;Product 3&lt;/TD&gt;&lt;TD&gt;15000&lt;/TD&gt;&lt;TD&gt;3000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Customer 2&lt;/TD&gt;&lt;TD&gt;Fire System&lt;/TD&gt;&lt;TD&gt;Product 1&lt;/TD&gt;&lt;TD&gt;6000&lt;/TD&gt;&lt;TD&gt;1000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Customer 2&lt;/TD&gt;&lt;TD&gt;Fire System&lt;/TD&gt;&lt;TD&gt;Product 2&lt;/TD&gt;&lt;TD&gt;6000&lt;/TD&gt;&lt;TD&gt;2000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Customer 2&lt;/TD&gt;&lt;TD&gt;Air System&lt;/TD&gt;&lt;TD&gt;Product 4&lt;/TD&gt;&lt;TD&gt;16000&lt;/TD&gt;&lt;TD&gt;4000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Customer 3&lt;/TD&gt;&lt;TD&gt;Water System&lt;/TD&gt;&lt;TD&gt;Product 5&lt;/TD&gt;&lt;TD&gt;11000&lt;/TD&gt;&lt;TD&gt;5000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Customer 3&lt;/TD&gt;&lt;TD&gt;Water System&lt;/TD&gt;&lt;TD&gt;Product 6&lt;/TD&gt;&lt;TD&gt;11000&lt;/TD&gt;&lt;TD&gt;6000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Customer 3&lt;/TD&gt;&lt;TD&gt;Air System&lt;/TD&gt;&lt;TD&gt;Product 4&lt;/TD&gt;&lt;TD&gt;16000&lt;/TD&gt;&lt;TD&gt;4000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Customer 1&lt;/TD&gt;&lt;TD&gt;Air System&lt;/TD&gt;&lt;TD&gt;Product 5&lt;/TD&gt;&lt;TD&gt;15000&lt;/TD&gt;&lt;TD&gt;5000&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sample Pivot Arrangement:&amp;nbsp; Proper Grand Total System Cost should be 79,000&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Row Labels&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Sum of System Cost&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Sum of Product Cost&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Customer 1&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;45000&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;11000&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Fire System&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;5000&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;1000&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Product 1&lt;/TD&gt;&lt;TD&gt;5000&lt;/TD&gt;&lt;TD&gt;1000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Water System&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;10000&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;2000&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Product 2&lt;/TD&gt;&lt;TD&gt;10000&lt;/TD&gt;&lt;TD&gt;2000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Air System&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;30000&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;8000&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Product 3&lt;/TD&gt;&lt;TD&gt;15000&lt;/TD&gt;&lt;TD&gt;3000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Product 5&lt;/TD&gt;&lt;TD&gt;15000&lt;/TD&gt;&lt;TD&gt;5000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Customer 2&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;28000&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;7000&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Customer 3&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;38000&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;15000&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Grand Total&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;111000&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;33000&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Aug 2020 17:49:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Grand-Totals-Need-a-Custom-Measure-to-Filter-by/m-p/1265309#M21184</guid>
      <dc:creator>DangerMan</dc:creator>
      <dc:date>2020-08-03T17:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: Incorrect Grand Totals - Need a Custom Measure to Filter by Multiple Criteria</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Grand-Totals-Need-a-Custom-Measure-to-Filter-by/m-p/1265377#M21187</link>
      <description>&lt;P&gt;&lt;SPAN&gt;"I do not want repeating System Cost to be summed, as the System Cost is fixed regardless of how many Products are associated with the System. "&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;That is a very unfortunate requirement.&amp;nbsp; Your best bet is to use entirely different data tables for System costs and for Product costs.&amp;nbsp; Use a data model instead of a single table.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2020 16:31:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Grand-Totals-Need-a-Custom-Measure-to-Filter-by/m-p/1265377#M21187</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2020-07-31T16:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: Incorrect Grand Totals - Need a Custom Measure to Filter by Multiple Criteria</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Grand-Totals-Need-a-Custom-Measure-to-Filter-by/m-p/1265471#M21192</link>
      <description>&lt;P&gt;To summarize my need more succinctly, I want the distinct, or unique system cost, regardless of how many products are in the system.&amp;nbsp; And I want this for each customer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would think this is possible with my data structure, because I have seen Measures created to solve the incorrect Grand Total problems.&amp;nbsp; In this case, I am simply looking at criteria from two different columns.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Edit:&amp;nbsp; My data is in a Data Model, but I tried to show it very simplified here.&amp;nbsp; System Cost and Product Cost do come from separate tables and are merged using Power Query.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2020 17:43:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Grand-Totals-Need-a-Custom-Measure-to-Filter-by/m-p/1265471#M21192</guid>
      <dc:creator>DangerMan</dc:creator>
      <dc:date>2020-07-31T17:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: Incorrect Grand Totals - Need a Custom Measure to Filter by Multiple Criteria</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Grand-Totals-Need-a-Custom-Measure-to-Filter-by/m-p/1265787#M21205</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="250088" data-lia-user-login="DangerMan" class="lia-mention lia-mention-user"&gt;DangerMan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try the following measure; it gives the right subtotals and totals.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Total System Cost = if(ISBLANK(SELECTEDVALUE('Table'[System Description])),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUMX(SUMMARIZE('Table',[Customer Name],[System Description],"customer", SELECTEDVALUE('Table'[Customer Name]),"system cost",max('Table'[System Cost])),[system cost]),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE(MAX('Table'[System Cost])))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Check out the pbix &lt;A href="https://alakhawayn365-my.sharepoint.com/:u:/g/personal/s_ouchtal_alumni_aui_ma/EQbIbX5zhSpEqy-vec3FvP8BL50kb3PdG0sRHxWjvY6oSQ?e=cSDxjo" target="_blank" rel="noopener"&gt;here&lt;/A&gt;.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Please if my solution solves the problem you posted, please mark as solution and give kudos!&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 31 Jul 2020 21:53:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Grand-Totals-Need-a-Custom-Measure-to-Filter-by/m-p/1265787#M21205</guid>
      <dc:creator>saraMissBI</dc:creator>
      <dc:date>2020-07-31T21:53:08Z</dc:date>
    </item>
    <item>
      <title>Re: Incorrect Grand Totals - Need a Custom Measure to Filter by Multiple Criteria</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Grand-Totals-Need-a-Custom-Measure-to-Filter-by/m-p/1269318#M21350</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="179989" data-lia-user-login="saraMissBI" class="lia-mention lia-mention-user"&gt;saraMissBI&lt;/a&gt;&amp;nbsp;:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your solution works brilliantly!&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&amp;nbsp; I wish that I understood the logic, but I am not very well-versed in the DAX functions.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_frowning_face:"&gt;🙁&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One caveat, my version of Excel did not recognize the SELECTEDVALUE function.&amp;nbsp; I was able to solve this problem using the equivalent code posted &lt;A href="https://docs.microsoft.com/en-us/dax/selectedvalue-function" target="_self"&gt;here&lt;/A&gt;.&amp;nbsp; Any reason why this function isn't available on my machine?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also changed the assigned table name from "system cost" to "SYS COST" just to make it easier to keep track of.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your help!&lt;/P&gt;</description>
      <pubDate>Mon, 03 Aug 2020 17:45:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Grand-Totals-Need-a-Custom-Measure-to-Filter-by/m-p/1269318#M21350</guid>
      <dc:creator>DangerMan</dc:creator>
      <dc:date>2020-08-03T17:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: Incorrect Grand Totals - Need a Custom Measure to Filter by Multiple Criteria</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Grand-Totals-Need-a-Custom-Measure-to-Filter-by/m-p/1282832#M21912</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="250088" data-lia-user-login="DangerMan" class="lia-mention lia-mention-user"&gt;DangerMan&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You are welcome! Glad you could solve it, but the link does not show the equivalent code you used (the link just opens the page for selectedvalue function). Could you please share the equivalent code you used? it would be interesting to learn alternative solutions.&lt;/P&gt;&lt;P&gt;Also, I read that Selectedvalue() is not supported in Excel yet...(that was in June 2019)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;</description>
      <pubDate>Sun, 09 Aug 2020 22:56:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Grand-Totals-Need-a-Custom-Measure-to-Filter-by/m-p/1282832#M21912</guid>
      <dc:creator>saraMissBI</dc:creator>
      <dc:date>2020-08-09T22:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: Incorrect Grand Totals - Need a Custom Measure to Filter by Multiple Criteria</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Grand-Totals-Need-a-Custom-Measure-to-Filter-by/m-p/1284529#M21951</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="179989" data-lia-user-login="saraMissBI" class="lia-mention lia-mention-user"&gt;saraMissBI&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The equivalent code is mentioned in the "remarks" section of the SELECTEDVALUE page, and I'll paste it here as well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;An equivalent expression for&amp;nbsp;SELECTEDVALUE(&amp;lt;columnName&amp;gt;, &amp;lt;alternateResult&amp;gt;)&lt;SPAN&gt;&amp;nbsp;is:&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IF(HASONEVALUE(&amp;lt;columnName&amp;gt;), VALUES(&amp;lt;columnName&amp;gt;), &amp;lt;alternateResult&amp;gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for your wonderful solution!&lt;/P&gt;</description>
      <pubDate>Mon, 10 Aug 2020 13:33:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Incorrect-Grand-Totals-Need-a-Custom-Measure-to-Filter-by/m-p/1284529#M21951</guid>
      <dc:creator>DangerMan</dc:creator>
      <dc:date>2020-08-10T13:33:07Z</dc:date>
    </item>
  </channel>
</rss>

