<?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 sum data by year of Measure in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sum-data-by-year-of-Measure/m-p/3487296#M133444</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="263533" data-lia-user-login="locle90" class="lia-mention lia-mention-user"&gt;locle90&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I created a sample pbix file(see&lt;EM&gt;&lt;STRONG&gt; the attachment&lt;/STRONG&gt;&lt;/EM&gt;), please check if that is what you want.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Total = 
VAR _tab =
    SUMMARIZE (
        'Table',
        'Table'[Date],
        "@avg", DIVIDE ( SUM ( 'Table'[value] ), SUM ( 'Table'[qty] ) )
    )
RETURN
    SUMX ( _tab, [@avg] )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
    <pubDate>Fri, 20 Oct 2023 09:09:06 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-10-20T09:09:06Z</dc:date>
    <item>
      <title>How to sum data by year of Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sum-data-by-year-of-Measure/m-p/3463008#M132107</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;I have created the Measure with average data = sum ( value ) / Sum ( qty ) by month or by item.&lt;/P&gt;&lt;P&gt;I want to SUM data of average by month when i select year at the yellow color. How can i do that ? Please give me your advice.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2023 04:19:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sum-data-by-year-of-Measure/m-p/3463008#M132107</guid>
      <dc:creator>locle90</dc:creator>
      <dc:date>2023-10-06T04:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to sum data by year of Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sum-data-by-year-of-Measure/m-p/3463026#M132110</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="263533" data-lia-user-login="locle90" class="lia-mention lia-mention-user"&gt;locle90&lt;/a&gt;&amp;nbsp;, If there is a measure that gives average correctly putting it in a table visual with month should give a total value at the bottom row. If the requirement is to get sum o&lt;SPAN&gt;f average in a card visual the dax will be different.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2023 04:51:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sum-data-by-year-of-Measure/m-p/3463026#M132110</guid>
      <dc:creator>ChiragGarg2512</dc:creator>
      <dc:date>2023-10-06T04:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to sum data by year of Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sum-data-by-year-of-Measure/m-p/3466377#M132303</link>
      <description>&lt;P&gt;Dear @&lt;SPAN&gt;ChiragGarg2512&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The table is one of the options. But how we can do that if we need to show on the card ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2023 08:17:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sum-data-by-year-of-Measure/m-p/3466377#M132303</guid>
      <dc:creator>locle90</dc:creator>
      <dc:date>2023-10-09T08:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to sum data by year of Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sum-data-by-year-of-Measure/m-p/3487296#M133444</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="263533" data-lia-user-login="locle90" class="lia-mention lia-mention-user"&gt;locle90&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I created a sample pbix file(see&lt;EM&gt;&lt;STRONG&gt; the attachment&lt;/STRONG&gt;&lt;/EM&gt;), please check if that is what you want.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Total = 
VAR _tab =
    SUMMARIZE (
        'Table',
        'Table'[Date],
        "@avg", DIVIDE ( SUM ( 'Table'[value] ), SUM ( 'Table'[qty] ) )
    )
RETURN
    SUMX ( _tab, [@avg] )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Fri, 20 Oct 2023 09:09:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-sum-data-by-year-of-Measure/m-p/3487296#M133444</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-10-20T09:09:06Z</dc:date>
    </item>
  </channel>
</rss>

