<?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 : Matrix Average values and sum subtotal in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Matrix-Average-values-and-sum-subtotal/m-p/2787120#M87397</link>
    <description>&lt;P&gt;Unfortunatly, isn't ok sub total PTF isn't equal to sum(ref)&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I have found an another method with transformation data : Group By&lt;/P&gt;&lt;P&gt;= Table.Group(#"Added Custom", {"PTF", "yyyymm", "REF"}, {{"ValueMoy", each List.Average([Value]), type nullable number}})&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;It's ok&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 22 Sep 2022 13:55:03 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-09-22T13:55:03Z</dc:date>
    <item>
      <title>How to : Matrix Average values and sum subtotal</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Matrix-Average-values-and-sum-subtotal/m-p/2786083#M87329</link>
      <description>&lt;P&gt;Hi eveybody,&lt;/P&gt;&lt;P&gt;I have some values like this&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;and Matrix Object like that&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;For each REF i have the monthly average (OK, it's what i want) but for the PTF subtotal i wish the sum of averages not the average&lt;/P&gt;&lt;P&gt;for example : PTF1/202202 (aaaaa+bbbbb = 6.00+3.50) = 9.50 not 4.75&lt;/P&gt;&lt;P&gt;How can i do that ?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2022 07:38:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Matrix-Average-values-and-sum-subtotal/m-p/2786083#M87329</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-09-22T07:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to : Matrix Average values and sum subtotal</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Matrix-Average-values-and-sum-subtotal/m-p/2786297#M87344</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;try this measure&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Measure = &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;HASONEVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[REF]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;AVERAGE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Value]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;calculate&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;AVERAGE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Value]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;)))&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;you will obtain this&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;img /&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;If this post is useful to help you to solve your issue, consider giving the post a thumbs up and accepting it as a solution !&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 22 Sep 2022 08:43:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Matrix-Average-values-and-sum-subtotal/m-p/2786297#M87344</guid>
      <dc:creator>serpiva64</dc:creator>
      <dc:date>2022-09-22T08:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to : Matrix Average values and sum subtotal</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Matrix-Average-values-and-sum-subtotal/m-p/2787120#M87397</link>
      <description>&lt;P&gt;Unfortunatly, isn't ok sub total PTF isn't equal to sum(ref)&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I have found an another method with transformation data : Group By&lt;/P&gt;&lt;P&gt;= Table.Group(#"Added Custom", {"PTF", "yyyymm", "REF"}, {{"ValueMoy", each List.Average([Value]), type nullable number}})&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;It's ok&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2022 13:55:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Matrix-Average-values-and-sum-subtotal/m-p/2787120#M87397</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-09-22T13:55:03Z</dc:date>
    </item>
  </channel>
</rss>

