<?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: Show average in total of matrix in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-average-in-total-of-matrix/m-p/4609004#M176432</link>
    <description>&lt;P&gt;Those didn't seem to give correct averages.&amp;nbsp; If I create a bridge table as&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Bridge_MRN = &lt;/SPAN&gt;&lt;SPAN&gt;DISTINCT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;UNION&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;('pharmacist dc initiated'[Clean_MRN_Pharmacy]), &lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;('provider'[Clean_MRN_Provider]))) it doesn't let me use related.&amp;nbsp; I've tried lookupvalue to no avail as well.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Thu, 13 Mar 2025 16:22:22 GMT</pubDate>
    <dc:creator>smparnon</dc:creator>
    <dc:date>2025-03-13T16:22:22Z</dc:date>
    <item>
      <title>Show average in total of matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-average-in-total-of-matrix/m-p/4608845#M176423</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I'm trying to show the average of a datediff between two tables.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Time between provider completed and pharmacist initiated =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;DATEDIFF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;provider&lt;/SPAN&gt;&lt;SPAN&gt;[Latest_Event_Time]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;[Test Latest Pharmacist Event Time2]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;MINUTE&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Average Time Between Provider Completed and Pharmacist Initiated =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;HASONEVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'pharmacist dc initiated'&lt;/SPAN&gt;&lt;SPAN&gt;[Clean_MRN_Pharmacy]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[Time between provider completed and pharmacist initiated]&lt;/SPAN&gt;&lt;SPAN&gt;, &amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;DIVIDE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'pharmacist dc initiated'&lt;/SPAN&gt;&lt;SPAN&gt;[Clean_MRN_Pharmacy]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[Time between provider completed and pharmacist initiated]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'pharmacist dc initiated'&lt;/SPAN&gt;&lt;SPAN&gt;[Clean_MRN_Pharmacy]&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;BLANK&lt;/SPAN&gt;&lt;SPAN&gt;()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I also tried doing an averagex function with a values but that gave me the same problem of essentially summing the data.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;The tables are in a many to many relationship.&amp;nbsp; They are joined on the clean_mrn_pharmacy and clean_mrn_provider.&amp;nbsp; There are multiple rows of the same latest_event_Time but only 1 row for each test_latest_pharmacist_event_time2.&amp;nbsp; I don't have a way to join the tables by a like index or identifier, just the same mrn, and there are more rows in the provider table than the 'pharmacist dc initiated' table.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;My main problem is that the averages are showing sums in my tables.&amp;nbsp; It would be easier if I could make a datediff calculated column but the many to many relationship is preventing that, and when I use a lookupvalue it only gives a few values.&amp;nbsp; The times do seem to match up in hte visual when I put the providers event time and pharmacist time in a table, so there's something I am missing.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thank you!&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 13 Mar 2025 14:31:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-average-in-total-of-matrix/m-p/4608845#M176423</guid>
      <dc:creator>smparnon</dc:creator>
      <dc:date>2025-03-13T14:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: Show average in total of matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-average-in-total-of-matrix/m-p/4608896#M176427</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="430551" data-lia-user-login="smparnon" class="lia-mention lia-mention-user"&gt;smparnon&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The issue you are experiencing is likely due to the many-to-many relationship between your tables, which is affecting the aggregation when calculating the average. Since there are multiple provider event times but only one pharmacist event time per MRN, it's crucial to ensure the DATEDIFF function is operating on the correct row context.&lt;/P&gt;
&lt;P&gt;First, modify the DATEDIFF calculation to ensure it operates on single values instead of multiple rows. You can achieve this using SELECTEDVALUE, which helps to extract a single event time per context.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Time between provider completed and pharmacist initiated =
VAR ProviderTime = SELECTEDVALUE(provider[Latest_Event_Time])
VAR PharmacistTime = SELECTEDVALUE('pharmacist dc initiated'[Test Latest Pharmacist Event Time2])
RETURN IF(NOT(ISBLANK(ProviderTime)) &amp;amp;&amp;amp; NOT(ISBLANK(PharmacistTime)), DATEDIFF(ProviderTime, PharmacistTime, MINUTE))
&lt;/LI-CODE&gt;
&lt;P&gt;Now, for the average calculation, your current approach is summing the values instead of computing a true average in the total row. Instead of using SUMX inside the DIVIDE function, using AVERAGEX on VALUES() ensures that the aggregation happens correctly.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Average Time Between Provider Completed and Pharmacist Initiated =
AVERAGEX(
    VALUES('pharmacist dc initiated'[Clean_MRN_Pharmacy]),
    [Time between provider completed and pharmacist initiated]
)
&lt;/LI-CODE&gt;
&lt;P&gt;If the issue persists due to the many-to-many relationship, another approach is using SUMMARIZE to explicitly reshape the table before performing the average calculation. This method ensures that the calculation is performed at the correct granularity.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Average Time Between Provider Completed and Pharmacist Initiated =
AVERAGEX(
    SUMMARIZE(
        'pharmacist dc initiated',
        'pharmacist dc initiated'[Clean_MRN_Pharmacy],
        "Time_Diff", [Time between provider completed and pharmacist initiated]
    ),
    [Time_Diff]
)
&lt;/LI-CODE&gt;
&lt;P&gt;Since your tables have a many-to-many relationship, an alternative fix is to use DISTINCT() inside SUMX to avoid double-counting MRN entries.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Average Time Between Provider Completed and Pharmacist Initiated =
DIVIDE(
    SUMX(
        DISTINCT('pharmacist dc initiated'[Clean_MRN_Pharmacy]),
        [Time between provider completed and pharmacist initiated]
    ),
    COUNTROWS(DISTINCT('pharmacist dc initiated'[Clean_MRN_Pharmacy]))
)
&lt;/LI-CODE&gt;
&lt;P&gt;This ensures that each MRN is only counted once when computing the average. If none of these approaches fully resolve the issue, consider introducing a bridge table to mediate the many-to-many relationship and structure the data in a more controlled manner. Let me know if you need further refinements.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 15:07:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-average-in-total-of-matrix/m-p/4608896#M176427</guid>
      <dc:creator>DataNinja777</dc:creator>
      <dc:date>2025-03-13T15:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: Show average in total of matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-average-in-total-of-matrix/m-p/4609004#M176432</link>
      <description>&lt;P&gt;Those didn't seem to give correct averages.&amp;nbsp; If I create a bridge table as&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Bridge_MRN = &lt;/SPAN&gt;&lt;SPAN&gt;DISTINCT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;UNION&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;('pharmacist dc initiated'[Clean_MRN_Pharmacy]), &lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;('provider'[Clean_MRN_Provider]))) it doesn't let me use related.&amp;nbsp; I've tried lookupvalue to no avail as well.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 13 Mar 2025 16:22:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-average-in-total-of-matrix/m-p/4609004#M176432</guid>
      <dc:creator>smparnon</dc:creator>
      <dc:date>2025-03-13T16:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: Show average in total of matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-average-in-total-of-matrix/m-p/4692809#M179699</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="430551" data-lia-user-login="smparnon" class="lia-mention lia-mention-user"&gt;smparnon&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to Microsoft Fabric Community Forum.&lt;/P&gt;
&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="608865" data-lia-user-login="DataNinja777" class="lia-mention lia-mention-user"&gt;DataNinja777&lt;/a&gt;&amp;nbsp;Thank you for your quick reply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="430551" data-lia-user-login="smparnon" class="lia-mention lia-mention-user"&gt;smparnon&lt;/a&gt;&amp;nbsp;Thanks for the update! You're absolutely right , the main challenge here is the many-to-many relationship between the provider and pharmacist tables, combined with the absence of a reliable 1:1 mapping. This makes it difficult to perform accurate row-level calculations such as DATEDIFF.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try a few workarounds mentioned below:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Please try to create a more Granular Bridge (If Possible):&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;If you are able to create a unique identifier (e.g., a combination of MRN + timestamp, or an encounter ID), that would be the ideal solution. You could generate this either upstream in the source system or within Power Query using a row number per MRN or similar logic.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL start="2"&gt;
&lt;LI&gt;If a unique ID isn't feasible, you can match each pharmacist event to the closest prior provider event using this DAX:&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Time between provider completed and pharmacist initiated =&lt;BR /&gt;VAR MRN = SELECTEDVALUE('pharmacist dc initiated'[Clean_MRN_Pharmacy])&lt;BR /&gt;VAR PharmacistTime = SELECTEDVALUE('pharmacist dc initiated'[Test Latest Pharmacist Event Time2])&lt;BR /&gt;VAR ClosestProviderTime =&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MAX(provider[Latest_Event_Time]),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FILTER(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; provider,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; provider[Clean_MRN_Provider] = MRN &amp;amp;&amp;amp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; provider[Latest_Event_Time] &amp;lt;= PharmacistTime&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;BR /&gt;RETURN&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NOT(ISBLANK(ClosestProviderTime)) &amp;amp;&amp;amp; NOT(ISBLANK(PharmacistTime)),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATEDIFF(ClosestProviderTime, PharmacistTime, MINUTE)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3.Then try to calculate the average:&lt;/P&gt;
&lt;P&gt;Average Time Between Provider Completed and Pharmacist Initiated =&lt;BR /&gt;AVERAGEX(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALUES('pharmacist dc initiated'[Clean_MRN_Pharmacy]),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Time between provider completed and pharmacist initiated]&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV style="direction: ltr;"&gt;
&lt;TABLE style="direction: ltr; border-collapse: collapse; border: 1pt solid #A3A3A3;" title="" border="1" summary="" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD style="background-color: #c5e0b3; vertical-align: top; width: 7.9659in; padding: 4pt 4pt 4pt 4pt; border: 1pt solid #A3A3A3;"&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;If this post helps, then please consider&amp;nbsp;&lt;FONT color="#993300"&gt;&lt;STRONG&gt;Accepting as solution&lt;/STRONG&gt;&lt;/FONT&gt; to help the other members find it more quickly, don't forget to give a "Kudos&amp;nbsp;&lt;img /&gt;" – I’d truly appreciate it!&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;P style="margin: 0in; margin-left: 3.0in; font-family: Arial; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;B Manikanteswara Reddy&lt;/P&gt;</description>
      <pubDate>Wed, 14 May 2025 15:21:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-average-in-total-of-matrix/m-p/4692809#M179699</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-14T15:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: Show average in total of matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-average-in-total-of-matrix/m-p/4696915#M179884</link>
      <description>&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="430551" data-lia-user-login="smparnon" class="lia-mention lia-mention-user"&gt;smparnon&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;We wanted to kindly follow up to check if the solution provided for the issue worked? or Let us know if you need any further assistance?&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;&lt;SPAN&gt;If our response addressed, please mark it as &lt;FONT color="#008000"&gt;&lt;STRONG&gt;Accept as solution&lt;/STRONG&gt;&lt;/FONT&gt; and click Yes if you found it helpful&lt;/SPAN&gt;.&lt;/P&gt;
&lt;DIV style="direction: ltr;"&gt;
&lt;TABLE style="direction: ltr; border-collapse: collapse; border: 1pt solid #A3A3A3;" title="" border="1" summary="" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD style="background-color: #c5e0b3; vertical-align: top; width: 7.9659in; padding: 4pt 4pt 4pt 4pt; border: 1pt solid #A3A3A3;"&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;Please don't forget to give a "Kudos&amp;nbsp;&lt;img /&gt;" – I’d truly appreciate it!&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;P style="margin: 0in; margin-left: 3.0in; font-family: Arial; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;B Manikanteswara Reddy&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 May 2025 17:03:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-average-in-total-of-matrix/m-p/4696915#M179884</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-17T17:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: Show average in total of matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-average-in-total-of-matrix/m-p/4700493#M180055</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="430551" data-lia-user-login="smparnon" class="lia-mention lia-mention-user"&gt;smparnon&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for the issue worked? or Let us know if you need any further assistance?&lt;/P&gt;
&lt;P&gt;If our response addressed, please mark it as &lt;FONT color="#008000"&gt;&lt;STRONG&gt;&lt;I&gt;Accept as &lt;/I&gt;&lt;/STRONG&gt;&lt;STRONG&gt;solution&lt;/STRONG&gt;&lt;/FONT&gt; and click Yes if you found it helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV style="direction: ltr;"&gt;
&lt;TABLE style="direction: ltr; border-collapse: collapse; border: 1pt solid #A3A3A3;" title="" border="1" summary="" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD style="background-color: #c5e0b3; vertical-align: top; width: 7.7854in; padding: 4pt 4pt 4pt 4pt; border: 1pt solid #A3A3A3;"&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;Please don't forget to give a "Kudos&amp;nbsp;&lt;img /&gt;" – I’d truly appreciate it!&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;P style="margin: 0in; margin-left: 3.0in; font-family: Arial; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;B Manikanteswara Reddy&lt;/P&gt;</description>
      <pubDate>Tue, 20 May 2025 17:24:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-average-in-total-of-matrix/m-p/4700493#M180055</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-20T17:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: Show average in total of matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-average-in-total-of-matrix/m-p/4705476#M180219</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="430551" data-lia-user-login="smparnon" class="lia-mention lia-mention-user"&gt;smparnon&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I ask if you have gotten this issue resolved?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it is solved, please mark the helpful reply or share your solution and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;&lt;I&gt;accept it as solution&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;, it will be helpful for other members of the community who have similar problems as yours to solve it faster.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV style="direction: ltr;"&gt;
&lt;TABLE style="direction: ltr; border-collapse: collapse; border: 1pt solid #A3A3A3;" title="" border="1" summary="" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD style="background-color: #c5e0b3; vertical-align: top; width: 7.7854in; padding: 4pt 4pt 4pt 4pt; border: 1pt solid #A3A3A3;"&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;Please don't forget to give a "Kudos&amp;nbsp;&lt;img /&gt;" – I’d truly appreciate it!&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;P style="margin: 0in; margin-left: 3.0in; font-family: Arial; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;B Manikanteswara Reddy&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 16:44:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-average-in-total-of-matrix/m-p/4705476#M180219</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-23T16:44:01Z</dc:date>
    </item>
  </channel>
</rss>

