<?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: Summarise volume of group in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarise-volume-of-group/m-p/3746307#M146109</link>
    <description>&lt;P&gt;Hi! I see you summarise total volume by SKU, by check my results table: I need to summarise total volume by store, that sell each SKU.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 06 Mar 2024 13:51:44 GMT</pubDate>
    <dc:creator>Sofiya72</dc:creator>
    <dc:date>2024-03-06T13:51:44Z</dc:date>
    <item>
      <title>Summarise volume of group</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarise-volume-of-group/m-p/3745809#M146076</link>
      <description>&lt;P&gt;Hi!&amp;nbsp;&lt;BR /&gt;Can someone help me with a measure for Power Query, that will show total volume for &amp;nbsp;stores, which sell current group of goods?&amp;nbsp;&lt;BR /&gt;&amp;nbsp;Here is an example of my row data:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; I count results manually. So I need DAX formula, that can summarise shops volumes for every fruit (but only in that shops where current fruit is selling).&lt;BR /&gt;For instance, in jan oranges were selling in shops A and C. So we need to get sum of total volumes in these shops in jan: 2 + 5 + 1 + 7 + 5 = 20.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Than I plan to use measure in pivot table.&amp;nbsp;&lt;BR /&gt;I am new in Power Query, so sorry if I got mistakes.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2024 10:30:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarise-volume-of-group/m-p/3745809#M146076</guid>
      <dc:creator>Sofiya72</dc:creator>
      <dc:date>2024-03-06T10:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: Summarise volume of group</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarise-volume-of-group/m-p/3746303#M146108</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="701212" data-lia-user-login="Sofiya72" class="lia-mention lia-mention-user"&gt;Sofiya72&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have taken a data format similar to you and this is how you can achieve it, you do not need to create any measure for that you use matrix visual for same.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!&lt;BR /&gt;Check for more intersing solution here: &lt;A class="" href="http://www.youtube.com/@Howtosolveprobem" target="_blank" rel="noopener nofollow noreferrer"&gt;www.youtube.com/@Howtosolveprobem&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jun 2024 06:10:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarise-volume-of-group/m-p/3746303#M146108</guid>
      <dc:creator>qqqqqwwwweeerrr</dc:creator>
      <dc:date>2024-06-22T06:10:18Z</dc:date>
    </item>
    <item>
      <title>Re: Summarise volume of group</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarise-volume-of-group/m-p/3746307#M146109</link>
      <description>&lt;P&gt;Hi! I see you summarise total volume by SKU, by check my results table: I need to summarise total volume by store, that sell each SKU.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2024 13:51:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarise-volume-of-group/m-p/3746307#M146109</guid>
      <dc:creator>Sofiya72</dc:creator>
      <dc:date>2024-03-06T13:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: Summarise volume of group</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarise-volume-of-group/m-p/3748047#M146185</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="701212" data-lia-user-login="Sofiya72" class="lia-mention lia-mention-user"&gt;Sofiya72&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;try below measure code&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;result = 
var a = VALUES('Table'[shop])
var b = CALCULATE(
            SUM('Table'[volume]),
            'Table'[shop] in a,
            ALL('Table'[fruit])
        )
return
b&lt;/LI-CODE&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Mar 2024 07:27:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarise-volume-of-group/m-p/3748047#M146185</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2024-03-07T07:27:52Z</dc:date>
    </item>
  </channel>
</rss>

