<?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 Dax in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4684597#M179417</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="490510" data-lia-user-login="nanacobsbs" class="lia-mention lia-mention-user"&gt;nanacobsbs&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;We haven’t heard back from you regarding our previous response and wanted to check if your issue has been resolved.&lt;/P&gt;
&lt;P&gt;If it has, please consider clicking “Accept Answer” and “Yes” if you found the response helpful.&lt;BR /&gt;If you still have any questions or need further assistance, feel free to let us know — we're happy to help!&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Thu, 08 May 2025 11:18:03 GMT</pubDate>
    <dc:creator>v-aatheeque</dc:creator>
    <dc:date>2025-05-08T11:18:03Z</dc:date>
    <item>
      <title>Average Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4604401#M176271</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The matrix is shown in Fig and Dax Dommand is bellow.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Average =&lt;/SPAN&gt; &lt;SPAN&gt;AVERAGE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Test'&lt;/SPAN&gt;&lt;SPAN&gt;[Nov]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;I would like to display the averaged results on each row, what DAX should I use?&lt;BR /&gt;I want the total row to have the same value as the maximum of the selected DATE numbers.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 05:41:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4604401#M176271</guid>
      <dc:creator>nanacobsbs</dc:creator>
      <dc:date>2025-03-11T05:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: Average Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4604419#M176272</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="490510" data-lia-user-login="nanacobsbs" class="lia-mention lia-mention-user"&gt;nanacobsbs&lt;/a&gt;&amp;nbsp;, Try using&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DAX&lt;BR /&gt;Average = &lt;BR /&gt;IF(&lt;BR /&gt;HASONEVALUE('Test'[DATE]),&lt;BR /&gt;AVERAGE('Test'[Nov]),&lt;BR /&gt;MAXX(ALL('Test'[DATE]), 'Test'[Nov])&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 05:56:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4604419#M176272</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-03-11T05:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: Average Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4604441#M176273</link>
      <description>&lt;P&gt;Thank you, but it does't work.&lt;/P&gt;&lt;P&gt;I would like to get the following calculation results.&lt;BR /&gt;Is it possible?&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;</description>
      <pubDate>Tue, 11 Mar 2025 06:13:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4604441#M176273</guid>
      <dc:creator>nanacobsbs</dc:creator>
      <dc:date>2025-03-11T06:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: Average Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4604447#M176274</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="490510" data-lia-user-login="nanacobsbs" class="lia-mention lia-mention-user"&gt;nanacobsbs&lt;/a&gt;&amp;nbsp;Try this one&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;RunningAverage = &lt;BR /&gt;IF(&lt;BR /&gt;HASONEVALUE('Test'[DATE]),&lt;BR /&gt;CALCULATE(&lt;BR /&gt;AVERAGEX(&lt;BR /&gt;FILTER(&lt;BR /&gt;ALL('Test'[DATE]),&lt;BR /&gt;'Test'[DATE] &amp;lt;= MAX('Test'[DATE])&lt;BR /&gt;),&lt;BR /&gt;'Test'[Nov]&lt;BR /&gt;)&lt;BR /&gt;),&lt;BR /&gt;CALCULATE(&lt;BR /&gt;AVERAGEX(&lt;BR /&gt;ALL('Test'[DATE]),&lt;BR /&gt;'Test'[Nov]&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 06:20:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4604447#M176274</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-03-11T06:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: Average Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4604485#M176276</link>
      <description>&lt;P&gt;It doesn't work.&lt;/P&gt;&lt;P&gt;Dax command has some error, so I put "SUM" infromt of&amp;nbsp;&lt;SPAN&gt;'Test'&lt;/SPAN&gt;&lt;SPAN&gt;[Nov]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 06:40:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4604485#M176276</guid>
      <dc:creator>nanacobsbs</dc:creator>
      <dc:date>2025-03-11T06:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: Average Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4678912#M179211</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="490510" data-lia-user-login="nanacobsbs" class="lia-mention lia-mention-user"&gt;nanacobsbs&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;can you try the below Dax query :&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;RunningAverage =
IF(
    HASONEVALUE('Test'[DATE]),
    AVERAGEX(
        FILTER(
            ALL('Test'[DATE]),
            'Test'[DATE] &amp;lt;= MAX('Test'[DATE])
        ),
        'Test'[Nov]
    ),
    AVERAGEX(
        ALL('Test'[DATE]),
        'Test'[Nov]
    )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;If the issue persists share the sample date for better understanding.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 8pt; font-family: Aptos; font-size: 12.0pt;"&gt;If this post was helpful, please consider marking &lt;SPAN&gt;Accept as solution&lt;/SPAN&gt; to assist other members in finding it more easily.&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 8pt; font-family: Aptos; font-size: 12.0pt;"&gt;If you continue to face issues, feel free to reach out to us for further assistance!&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 04 May 2025 14:26:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4678912#M179211</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-05-04T14:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: Average Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4684597#M179417</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="490510" data-lia-user-login="nanacobsbs" class="lia-mention lia-mention-user"&gt;nanacobsbs&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;We haven’t heard back from you regarding our previous response and wanted to check if your issue has been resolved.&lt;/P&gt;
&lt;P&gt;If it has, please consider clicking “Accept Answer” and “Yes” if you found the response helpful.&lt;BR /&gt;If you still have any questions or need further assistance, feel free to let us know — we're happy to help!&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 08 May 2025 11:18:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4684597#M179417</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-05-08T11:18:03Z</dc:date>
    </item>
    <item>
      <title>Re: Average Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4690209#M179613</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="490510" data-lia-user-login="nanacobsbs" class="lia-mention lia-mention-user"&gt;nanacobsbs&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Has your issue been resolved? If a community member's response addressed your query, please consider marking it as Accepted Answer and click Yes if you found it helpful.&lt;/P&gt;
&lt;P&gt;If you have any further questions, feel free to reach out.&lt;BR /&gt;Thank you for being a valued member of the Microsoft Fabric Community Forum!&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 07:11:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4690209#M179613</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-05-13T07:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: Average Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4697357#M179910</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="490510" data-lia-user-login="nanacobsbs" class="lia-mention lia-mention-user"&gt;nanacobsbs&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;We haven’t heard back from you regarding our previous response and wanted to check if your issue has been resolved.&lt;/P&gt;
&lt;P&gt;If it has, please consider clicking “Accept Answer” and “Yes” if you found the response helpful.&lt;BR /&gt;If you still have any questions or need further assistance, feel free to let us know — we're happy to help!&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Sun, 18 May 2025 17:52:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4697357#M179910</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-05-18T17:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: Average Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4698003#M179946</link>
      <description>&lt;P&gt;Thank you for your comment.&lt;/P&gt;&lt;P&gt;I tried above DAX command, but it doesn't work like below.&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;</description>
      <pubDate>Mon, 19 May 2025 08:04:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4698003#M179946</guid>
      <dc:creator>nanacobsbs</dc:creator>
      <dc:date>2025-05-19T08:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Average Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4703639#M180153</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="490510" data-lia-user-login="nanacobsbs" class="lia-mention lia-mention-user"&gt;nanacobsbs&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;can you try this :&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;Average Display =&lt;BR /&gt;IF (&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ISINSCOPE('Test'[Date]),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE(AVERAGE('Test'[Nov])),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE(MAXX(VALUES('Test'[Date]), CALCULATE('Test'[Nov])))&lt;BR /&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="en-US"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 8pt; font-family: Aptos; font-size: 12.0pt;"&gt;If this post was helpful, please consider marking &lt;SPAN&gt;Accept as solution&lt;/SPAN&gt; to assist other members in finding it more easily.&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 13:00:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4703639#M180153</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-05-22T13:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: Average Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4704725#M180193</link>
      <description>&lt;P&gt;Thank you for your comment.&lt;/P&gt;&lt;P&gt;I tried above DAX command, but it doesn't work like below.&lt;BR /&gt;If the total had shown 26.77 it would have been good.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 07:52:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4704725#M180193</guid>
      <dc:creator>nanacobsbs</dc:creator>
      <dc:date>2025-05-23T07:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: Average Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4924269#M186906</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="490510" data-lia-user-login="nanacobsbs" class="lia-mention lia-mention-user"&gt;nanacobsbs&lt;/a&gt;&amp;nbsp; Please find the solution :&lt;/P&gt;&lt;P&gt;Average Unit Price =&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;Average :=&lt;BR /&gt;&lt;/SPAN&gt;&lt;DIV&gt;IF (&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; HASONEVALUE ( 'Test'[Date] ),&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; AVERAGE ( 'Test'[Nov] ),&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; CALCULATE (&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; AVERAGE ( 'Test'[Nov] ),&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Test'[Date] = MAX ( 'Test'[Date] )&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; )&lt;/DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 23 Jan 2026 10:14:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-Dax/m-p/4924269#M186906</guid>
      <dc:creator>Ray_Minds</dc:creator>
      <dc:date>2026-01-23T10:14:47Z</dc:date>
    </item>
  </channel>
</rss>

