<?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: Dax measure for Grand total in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-for-Grand-total/m-p/3317393#M124134</link>
    <description>&lt;P&gt;Thanks, i got your idea. I have solved the issue.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 06 Jul 2023 02:38:48 GMT</pubDate>
    <dc:creator>JustNewbie</dc:creator>
    <dc:date>2023-07-06T02:38:48Z</dc:date>
    <item>
      <title>Dax measure for Grand total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-for-Grand-total/m-p/3313909#M123944</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Hi, I have 2 connected tables, how do I use Dax measures to perform the calculations. I intend to calculate the avg days of each activities and total up&amp;nbsp; &amp;amp; give me final numbers. The DAX need to calculate average of each activities and finally total up all activities. I need to measure 4 activities took up how many days to complete.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 08:33:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-for-Grand-total/m-p/3313909#M123944</guid>
      <dc:creator>JustNewbie</dc:creator>
      <dc:date>2023-07-04T08:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure for Grand total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-for-Grand-total/m-p/3314975#M124019</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You will need to use AVERAGEX to get the average of each column across their respective tables and then sum up each result.&lt;BR /&gt;It would look something like this:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Sum Avg Activities =&lt;BR /&gt;VAR Avg_Days_To_assigne = AVERAGEX('Table 1',SUM('Tabl 1'[Days to assigne])&lt;BR /&gt;VAR Avg_Days_to_pack = AVERAGEX('Table 1',SUM('Tabl 1'[Days to pack])&lt;BR /&gt;VAR Avg_Days_To_ship = AVERAGEX('Table 2',SUM('Tabl 2'[Days to ship])&lt;BR /&gt;VAR Avg_Days_To_receive = AVERAGEX('Table 2',SUM('Tabl 2'[Days to receive])&lt;BR /&gt;RETURN&lt;BR /&gt;Avg_Days_To_assigne + Avg_Days_to_pack + Avg_Days_To_ship + Avg_Days_To_receive&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did I answer your question? Mark my post as a solution!&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 18:47:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-for-Grand-total/m-p/3314975#M124019</guid>
      <dc:creator>AlanFredes</dc:creator>
      <dc:date>2023-07-04T18:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure for Grand total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-for-Grand-total/m-p/3315752#M124056</link>
      <description>&lt;P&gt;Thanks for your reply.... I tried to applied your solution to my real dataset. But i realised it gives me wrong results.. Not sure what went wrong? For example, If I total up all the average activities, it should give me 18 days.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jul 2023 08:39:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-for-Grand-total/m-p/3315752#M124056</guid>
      <dc:creator>JustNewbie</dc:creator>
      <dc:date>2023-07-05T08:39:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure for Grand total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-for-Grand-total/m-p/3316299#M124092</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would need some more information to know exactly what issue you are facing. Example data would be prefered.&lt;/P&gt;&lt;P&gt;Note that the AVERAGEX formula I provided will run through each row in the table if your Item column is a subset of these (a categoria) displayed just in a Matrix or Table then you need to change the formula like shown bellow:&lt;BR /&gt;&lt;SPAN&gt;VAR Avg_Days_To_assigne = AVERAGEX(VALUES('Table X'[Item Column]),CALCULATE(SUM('Tabl 1'[Days to assigned]))&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jul 2023 13:04:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-for-Grand-total/m-p/3316299#M124092</guid>
      <dc:creator>AlanFredes</dc:creator>
      <dc:date>2023-07-05T13:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure for Grand total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-for-Grand-total/m-p/3317393#M124134</link>
      <description>&lt;P&gt;Thanks, i got your idea. I have solved the issue.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2023 02:38:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-for-Grand-total/m-p/3317393#M124134</guid>
      <dc:creator>JustNewbie</dc:creator>
      <dc:date>2023-07-06T02:38:48Z</dc:date>
    </item>
  </channel>
</rss>

