<?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: Average Sum of total month in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Sum-of-total-month/m-p/4103543#M162832</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure if I understood your question correctly, but I tried to create a sample pbix file like below.&lt;/P&gt;
&lt;P&gt;Please check the below picture and the attached pbix file.&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;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;LI-CODE lang="markup"&gt;Sales: = 
SUM(sales[sales])&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;expected result measure: = 
VAR _t =
    SUMMARIZE (
        FILTER (
            'calendar',
            'calendar'[Date] &amp;gt;= DATE ( 2023, 7, 1 )
                &amp;amp;&amp;amp; 'calendar'[Date] &amp;lt; DATE ( 2024, 7, 1 )
        ),
        'calendar'[Month Year]
    )
RETURN
    AVERAGEX ( _t, [Sales:] )&lt;/LI-CODE&gt;</description>
    <pubDate>Fri, 16 Aug 2024 04:53:29 GMT</pubDate>
    <dc:creator>Jihwan_Kim</dc:creator>
    <dc:date>2024-08-16T04:53:29Z</dc:date>
    <item>
      <title>Average Sum of total month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Sum-of-total-month/m-p/4103479#M162830</link>
      <description>&lt;P&gt;Hi I would like to Average the Sum of total month from July 2023 to June 2024 , but I have data from July 2023 to July 2024 how would i do it&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;This is the out put that i want&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;ive tried this formula but i getting by day average from July 1 2023 to June 30, 2024&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2024 03:50:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Sum-of-total-month/m-p/4103479#M162830</guid>
      <dc:creator>jercks00</dc:creator>
      <dc:date>2024-08-16T03:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: Average Sum of total month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Sum-of-total-month/m-p/4103543#M162832</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure if I understood your question correctly, but I tried to create a sample pbix file like below.&lt;/P&gt;
&lt;P&gt;Please check the below picture and the attached pbix file.&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;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;LI-CODE lang="markup"&gt;Sales: = 
SUM(sales[sales])&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;expected result measure: = 
VAR _t =
    SUMMARIZE (
        FILTER (
            'calendar',
            'calendar'[Date] &amp;gt;= DATE ( 2023, 7, 1 )
                &amp;amp;&amp;amp; 'calendar'[Date] &amp;lt; DATE ( 2024, 7, 1 )
        ),
        'calendar'[Month Year]
    )
RETURN
    AVERAGEX ( _t, [Sales:] )&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 16 Aug 2024 04:53:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Sum-of-total-month/m-p/4103543#M162832</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2024-08-16T04:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: Average Sum of total month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Sum-of-total-month/m-p/4635631#M177467</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp;Is there a way to have this only apply to the row total of the matrix? For my need, I have the dates as my columns, the [branches] being the rows, and I have other measures for the values. What I'm needing to only have the average of the measures across the months display in the row grand total of the matrix. I do not want this new measure that you have provided an example for to be visible in the date columns - only the grand total.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 19:25:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Sum-of-total-month/m-p/4635631#M177467</guid>
      <dc:creator>TCatron18</dc:creator>
      <dc:date>2025-04-02T19:25:55Z</dc:date>
    </item>
  </channel>
</rss>

