<?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: pbi calculated table, i can't get the correct average score of the agent if they only have 1 data in in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4786021#M183251</link>
    <description>&lt;P&gt;Apologies for late response and thank you for your suggestion. just got back from sickness. upon testing it resulted with the same issue. The issue is when the agent have only 1 score in the dataset, it shows incorrect result but if the agent have multiple score in the dataset it provides the correct score. it seems that if the agent have only 1 score it average the score in overall score of the dataset resulting an incorrect result.&lt;/P&gt;</description>
    <pubDate>Mon, 04 Aug 2025 05:15:37 GMT</pubDate>
    <dc:creator>NoteDaxSolution</dc:creator>
    <dc:date>2025-08-04T05:15:37Z</dc:date>
    <item>
      <title>pbi calculated table, i can't get the correct average score of the agent if they only have 1 data in</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4782618#M183130</link>
      <description>&lt;P&gt;in pbi calculated table, i can't get the correct average score of the agent if they only have 1 data in the dataset but the other agents with multiple data shows the correct result. I am using this dax formula: Score table = SUMMARIZE( PLDT, PLDT[Agent Name], "Overall Score", AVERAGEX(PLDT, PLDT[OVERALL SCORE]) ). Thank you so much in advance.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2025 08:07:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4782618#M183130</guid>
      <dc:creator>NoteDaxSolution</dc:creator>
      <dc:date>2025-07-31T08:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: pbi calculated table, i can't get the correct average score of the agent if they only have 1 data in</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4782653#M183131</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1325701" data-lia-user-login="NoteDaxSolution" class="lia-mention lia-mention-user"&gt;NoteDaxSolution&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Withou further information is difficult to give you a correct answer, can you please share some mockpup data and expected result.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2025 08:36:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4782653#M183131</guid>
      <dc:creator>MFelix</dc:creator>
      <dc:date>2025-07-31T08:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: pbi calculated table, i can't get the correct average score of the agent if they only have 1 data in</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4783726#M183166</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.&lt;/P&gt;
&lt;P&gt;I assume you are having problem with how to handle blank rows in the table when calculating average, and I assume you want to include the blank rows into calculating the average.&lt;BR /&gt;Please check the below picture and the attached pbix file if it suits your requirement.&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;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Score table = 
SUMMARIZECOLUMNS (
    PLDT[Agent Name],
    "Overall Score", DIVIDE ( SUM ( PLDT[OVERALL SCORE] ), COUNTROWS ( PLDT ) )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 01 Aug 2025 04:20:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4783726#M183166</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2025-08-01T04:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: pbi calculated table, i can't get the correct average score of the agent if they only have 1 data in</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4785928#M183247</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1325701" data-lia-user-login="NoteDaxSolution" class="lia-mention lia-mention-user"&gt;NoteDaxSolution&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Microsoft Fabric Forum Community, and special thanks to&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="14361" data-lia-user-login="MFelix" class="lia-mention lia-mention-user"&gt;MFelix&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&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; for prompt and helpful responses.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just following up to see if the solutions provided by community members were helpful in addressing the issue.&lt;/P&gt;
&lt;P&gt;If one of the responses helped resolve your query, please consider marking it as the Accepted Solution. Feel free to reach out if you need any further clarification or assistance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Prasanna Kumar&lt;/P&gt;</description>
      <pubDate>Mon, 04 Aug 2025 04:27:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4785928#M183247</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-08-04T04:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: pbi calculated table, i can't get the correct average score of the agent if they only have 1 data in</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4786021#M183251</link>
      <description>&lt;P&gt;Apologies for late response and thank you for your suggestion. just got back from sickness. upon testing it resulted with the same issue. The issue is when the agent have only 1 score in the dataset, it shows incorrect result but if the agent have multiple score in the dataset it provides the correct score. it seems that if the agent have only 1 score it average the score in overall score of the dataset resulting an incorrect result.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Aug 2025 05:15:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4786021#M183251</guid>
      <dc:creator>NoteDaxSolution</dc:creator>
      <dc:date>2025-08-04T05:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: pbi calculated table, i can't get the correct average score of the agent if they only have 1 data in</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4786023#M183252</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Apologies for late response and thank you for your suggestion. just got back from sickness. upon testing it resulted with the same issue. The issue is when the agent have only 1 score in the dataset, it shows incorrect result but if the agent have multiple score in the dataset it provides the correct score. it seems that if the agent have only 1 score it average the score in overall score of the dataset resulting an incorrect result.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Aug 2025 05:16:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4786023#M183252</guid>
      <dc:creator>NoteDaxSolution</dc:creator>
      <dc:date>2025-08-04T05:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: pbi calculated table, i can't get the correct average score of the agent if they only have 1 data in</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4787523#M183295</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1325701" data-lia-user-login="NoteDaxSolution" class="lia-mention lia-mention-user"&gt;NoteDaxSolution&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try using below dax.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Score table =&lt;BR /&gt;ADDCOLUMNS(SUMMARIZE(PLDT, PLDT[Agent Name]),"Overall Score",CALCULATE(AVERAGE(PLDT[OVERALL SCORE])))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Prasanna Kumar&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2025 06:52:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4787523#M183295</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-08-05T06:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: pbi calculated table, i can't get the correct average score of the agent if they only have 1 data in</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4787636#M183300</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1325701" data-lia-user-login="NoteDaxSolution" class="lia-mention lia-mention-user"&gt;NoteDaxSolution&lt;/a&gt;&amp;nbsp; , Please try below dax if this helps:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Score Table =SUMMARIZE(VALUES(PLDT[Agent Name]),PLDT[Agent Name],"Overall Score",CALCULATE(&lt;BR /&gt;AVERAGE(PLDT[OVERALL SCORE])))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Azad&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2025 08:47:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4787636#M183300</guid>
      <dc:creator>Azadsingh</dc:creator>
      <dc:date>2025-08-05T08:47:21Z</dc:date>
    </item>
    <item>
      <title>Re: pbi calculated table, i can't get the correct average score of the agent if they only have 1 data in</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4790766#M183371</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1325701" data-lia-user-login="NoteDaxSolution" class="lia-mention lia-mention-user"&gt;NoteDaxSolution&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just following up to see if the responses provided by community members were helpful in addressing the issue. If one of the responses helped resolve your query, please consider marking it as the Accepted Solution. Feel free to reach out if you need any further clarification or assistance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Prasanna Kumar&lt;/P&gt;</description>
      <pubDate>Fri, 08 Aug 2025 02:45:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4790766#M183371</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-08-08T02:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: pbi calculated table, i can't get the correct average score of the agent if they only have 1 data in</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4790767#M183372</link>
      <description>&lt;P&gt;Good Day and Thank you for your help. Unfortunately, the given formula is not working.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Aug 2025 02:48:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4790767#M183372</guid>
      <dc:creator>NoteDaxSolution</dc:creator>
      <dc:date>2025-08-08T02:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: pbi calculated table, i can't get the correct average score of the agent if they only have 1 data in</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4790768#M183373</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Good Day and Thank you for your help. Unfortunately, the given formula is not working.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Aug 2025 02:49:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4790768#M183373</guid>
      <dc:creator>NoteDaxSolution</dc:creator>
      <dc:date>2025-08-08T02:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: pbi calculated table, i can't get the correct average score of the agent if they only have 1 data in</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4790769#M183374</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Good Day and Thank you for your help. Unfortunately, the given formula is not working.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Aug 2025 02:49:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4790769#M183374</guid>
      <dc:creator>NoteDaxSolution</dc:creator>
      <dc:date>2025-08-08T02:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: pbi calculated table, i can't get the correct average score of the agent if they only have 1 data in</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4791257#M183402</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1325701" data-lia-user-login="NoteDaxSolution" class="lia-mention lia-mention-user"&gt;NoteDaxSolution&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you able to share a sample file? It seems to me that the test that are being done don't match your model.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you can share a mockup it will be easier to check the changes that need to be done to the DAX.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Aug 2025 12:41:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4791257#M183402</guid>
      <dc:creator>MFelix</dc:creator>
      <dc:date>2025-08-08T12:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: pbi calculated table, i can't get the correct average score of the agent if they only have 1 data in</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4795171#M183517</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1325701" data-lia-user-login="NoteDaxSolution" class="lia-mention lia-mention-user"&gt;NoteDaxSolution&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please provide a sample PBIX file or sample data along with the expected output as suggested by&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="14361" data-lia-user-login="MFelix" class="lia-mention lia-mention-user"&gt;MFelix&lt;/a&gt;&amp;nbsp; so that we can assist you more effectively?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Prasanna Kumar&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 05:47:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4795171#M183517</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-08-13T05:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: pbi calculated table, i can't get the correct average score of the agent if they only have 1 data in</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4801803#M183703</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1325701" target="_blank"&gt;@NoteDaxSolution&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please provide a sample PBIX file or sample data along with the expected output as suggested by&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/14361" target="_blank"&gt;@MFelix&lt;/A&gt;&amp;nbsp; so that we can assist you more effectively?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Prasanna Kumar&lt;/P&gt;</description>
      <pubDate>Wed, 20 Aug 2025 06:26:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/pbi-calculated-table-i-can-t-get-the-correct-average-score-of/m-p/4801803#M183703</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-08-20T06:26:36Z</dc:date>
    </item>
  </channel>
</rss>

