<?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 Hot to get Sum of Avg in Matrix in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hot-to-get-Sum-of-Avg-in-Matrix/m-p/3006899#M101765</link>
    <description>&lt;P&gt;Avg1-1%&lt;/P&gt;&lt;P&gt;Avg2-2%&lt;/P&gt;&lt;P&gt;Avg3- 4%&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Matrix when I drag this average measure in total I get avg value-2.3% but I have to get sum=7%.pls help me to achieve&amp;nbsp; this?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 07 Jan 2023 11:52:28 GMT</pubDate>
    <dc:creator>Happy2023_05</dc:creator>
    <dc:date>2023-01-07T11:52:28Z</dc:date>
    <item>
      <title>Hot to get Sum of Avg in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hot-to-get-Sum-of-Avg-in-Matrix/m-p/3006899#M101765</link>
      <description>&lt;P&gt;Avg1-1%&lt;/P&gt;&lt;P&gt;Avg2-2%&lt;/P&gt;&lt;P&gt;Avg3- 4%&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Matrix when I drag this average measure in total I get avg value-2.3% but I have to get sum=7%.pls help me to achieve&amp;nbsp; this?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Jan 2023 11:52:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hot-to-get-Sum-of-Avg-in-Matrix/m-p/3006899#M101765</guid>
      <dc:creator>Happy2023_05</dc:creator>
      <dc:date>2023-01-07T11:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: Hot to get Sum of Avg in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hot-to-get-Sum-of-Avg-in-Matrix/m-p/3006909#M101767</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="454927" data-lia-user-login="Happy2023_05" class="lia-mention lia-mention-user"&gt;Happy2023_05&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please use&lt;/P&gt;
&lt;P&gt;SUMX (&amp;nbsp;&lt;/P&gt;
&lt;P&gt;VALUES ( 'Table'[&lt;EM&gt;the slicing by column at rows of the matrix] ),&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;[&lt;EM&gt;Average Measure&lt;/EM&gt;]&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;If you are slicing by multiple columns from different tables then&lt;/P&gt;
&lt;P&gt;SUMX (&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SUMMARIZE ( 'Fact Table', 'Dim Table1'[&lt;EM&gt;columnX],&lt;/EM&gt;&amp;nbsp;'Dim Table2'[&lt;EM&gt;columnY&lt;/EM&gt;], ... ),&lt;/P&gt;
&lt;P&gt;[&lt;EM&gt;Average Measure&lt;/EM&gt;]&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;</description>
      <pubDate>Sat, 07 Jan 2023 12:09:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hot-to-get-Sum-of-Avg-in-Matrix/m-p/3006909#M101767</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-01-07T12:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: Hot to get Sum of Avg in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hot-to-get-Sum-of-Avg-in-Matrix/m-p/3007025#M101795</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much it works.&amp;nbsp;&lt;/P&gt;&lt;P&gt;But the summation is not correct for integer&lt;/P&gt;&lt;P&gt;Suppose - 7% +0% total showing -8% which is not correct.&amp;nbsp;&lt;/P&gt;&lt;P&gt;But in decimal it shows correct&lt;/P&gt;&lt;P&gt;7.28%+0.33%=7.61%.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want it as integer so value should be 7%. Round function not working for percentage.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Round(sumx(),avg measure),0).&lt;/P&gt;</description>
      <pubDate>Sat, 07 Jan 2023 17:07:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hot-to-get-Sum-of-Avg-in-Matrix/m-p/3007025#M101795</guid>
      <dc:creator>Happy2023_05</dc:creator>
      <dc:date>2023-01-07T17:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: Hot to get Sum of Avg in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hot-to-get-Sum-of-Avg-in-Matrix/m-p/3007064#M101796</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="454927" data-lia-user-login="Happy2023_05" class="lia-mention lia-mention-user"&gt;Happy2023_05&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use&amp;nbsp;&lt;/P&gt;
&lt;P&gt;VALUES ( 'Table'[&lt;EM&gt;the slicing by column at rows of the matrix] ),&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;ROUND ( [&lt;EM&gt;Average Measure&lt;/EM&gt;], 0 )&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;</description>
      <pubDate>Sat, 07 Jan 2023 19:06:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hot-to-get-Sum-of-Avg-in-Matrix/m-p/3007064#M101796</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-01-07T19:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: Hot to get Sum of Avg in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hot-to-get-Sum-of-Avg-in-Matrix/m-p/3007254#M101810</link>
      <description>&lt;P&gt;I tried it already round(avg measure) gives 0% individual value and sum becomes 0%.this does not work. Is there any other way to achieve it?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Jan 2023 03:49:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hot-to-get-Sum-of-Avg-in-Matrix/m-p/3007254#M101810</guid>
      <dc:creator>Happy2023_05</dc:creator>
      <dc:date>2023-01-08T03:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: Hot to get Sum of Avg in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hot-to-get-Sum-of-Avg-in-Matrix/m-p/3007269#M101812</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="454927" data-lia-user-login="Happy2023_05" class="lia-mention lia-mention-user"&gt;Happy2023_05&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You wrapped the whole SUMX with ROUND. You need to wrap only the measure inside SUMX&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SUMX (&lt;/P&gt;
&lt;P&gt;VALUES ( 'Table'[&lt;EM&gt;the slicing by column at rows of the matrix] ),&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;ROUND ( [&lt;EM&gt;Average Measure&lt;/EM&gt;], 0 )&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;</description>
      <pubDate>Sun, 08 Jan 2023 04:53:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hot-to-get-Sum-of-Avg-in-Matrix/m-p/3007269#M101812</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-01-08T04:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: Hot to get Sum of Avg in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hot-to-get-Sum-of-Avg-in-Matrix/m-p/3007397#M101821</link>
      <description>&lt;P&gt;I did the way you mentioned above.Wrapped round function inside sumx not whole sumx. That did not work. It rounds each avg measure value to 0%&lt;/P&gt;</description>
      <pubDate>Sun, 08 Jan 2023 12:04:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hot-to-get-Sum-of-Avg-in-Matrix/m-p/3007397#M101821</guid>
      <dc:creator>Happy2023_05</dc:creator>
      <dc:date>2023-01-08T12:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Hot to get Sum of Avg in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hot-to-get-Sum-of-Avg-in-Matrix/m-p/3007456#M101826</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="454927" data-lia-user-login="Happy2023_05" class="lia-mention lia-mention-user"&gt;Happy2023_05&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please provide a screenshot for better understanding of your problem&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Jan 2023 13:49:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hot-to-get-Sum-of-Avg-in-Matrix/m-p/3007456#M101826</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-01-08T13:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: Hot to get Sum of Avg in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hot-to-get-Sum-of-Avg-in-Matrix/m-p/3007558#M101843</link>
      <description>&lt;P&gt;&lt;img /&gt;&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;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;AVG = &lt;/SPAN&gt;&lt;SPAN&gt;AVERAGE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Table1&lt;/SPAN&gt;&lt;SPAN&gt;[sales%]&lt;/SPAN&gt;&lt;SPAN&gt;) . &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I could not see any option to attach PBIX file so sharing screenshot.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Jan 2023 17:21:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hot-to-get-Sum-of-Avg-in-Matrix/m-p/3007558#M101843</guid>
      <dc:creator>Happy2023_05</dc:creator>
      <dc:date>2023-01-08T17:21:36Z</dc:date>
    </item>
  </channel>
</rss>

