<?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 calculation with several conditions in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4690237#M179615</link>
    <description>&lt;P&gt;Its not giving correct result. Its giving same value for all customers.&lt;/P&gt;</description>
    <pubDate>Tue, 13 May 2025 07:26:35 GMT</pubDate>
    <dc:creator>NG1407</dc:creator>
    <dc:date>2025-05-13T07:26:35Z</dc:date>
    <item>
      <title>Average calculation with several conditions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4663362#M178579</link>
      <description>&lt;P&gt;I need solution for below scenario:&lt;BR /&gt;I have several slicer in my report. Date, Hour, Event hour, Customer etc.&lt;BR /&gt;Now when I select Hour from slicer then it should calculate average of rate for selected hour -1, selected hour, and selected hour +1 e.g. we select 3 from Hour slicer then it should calculate average of rate for hour 2 ,3 and 4&lt;BR /&gt;Then in Event hour slicer (its a between slicer) when we select the range say 2 to 3 then it should subtract Rate of Event hour 2 and event hour 3 from average of rate (calculated above)&lt;BR /&gt;and lastly we need to calculated average of these difference. Below is table&lt;BR /&gt;Hour&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Event Hour&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Rate&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 7654&lt;BR /&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3456&lt;BR /&gt;4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2313&lt;BR /&gt;5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 4532&lt;BR /&gt;6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2659&lt;BR /&gt;Average for Hour 2,3 and 4= 7654+3456+2313/3 = 4474.3333&lt;BR /&gt;then we select 2 to 3 from Event Hour and subtract Rate from Average like 4474.3333-3456 = 1018.3333 and 4474.3333-2313= 2161.3333&lt;BR /&gt;then calculate average of these difference. 1018.3333+2161.3333/2&lt;/P&gt;</description>
      <pubDate>Tue, 22 Apr 2025 14:14:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4663362#M178579</guid>
      <dc:creator>NG1407</dc:creator>
      <dc:date>2025-04-22T14:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: Average calculation with several conditions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4669503#M178856</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="659067" data-lia-user-login="NG1407" class="lia-mention lia-mention-user"&gt;NG1407&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Here are the steps that should help you with your task ^_^:&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;1. Create a Measure for Hours:&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;First, you'll need to create a measure for the average rate within a specific hour range. Here's the formula for that:&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;EM&gt;AvgRateSelectedHourRange =&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;VAR SelectedHour = SELECTEDVALUE('Table 1 (Sheet1)'[Hour])&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;VAR HourRange =&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; FILTER(&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ALL('Table 1 (Sheet1)'),&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table 1 (Sheet1)'[Hour] &amp;gt;= SelectedHour - 1 &amp;amp;&amp;amp;&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table 1 (Sheet1)'[Hour] &amp;lt;= SelectedHour + 1&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; )&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;RETURN&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; AVERAGEX(HourRange, 'Table 1 (Sheet1)'[Rate])&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;2. Create a Disconnected Table for Event Hours:&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;You will need to create a disconnected table that represents your event hours. This will allow for better control over filtering without affecting other data in your model.&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3.Create a Measure for Calculating Differences Using the Event Hours Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;EM&gt;AvgEventHourDifference =&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;VAR AvgRate = [AvgRateSelectedHourRange]&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;VAR SelectedEventHourStart = MINX(ALLSELECTED('EventHourSlicer'[Event Hour]), 'EventHourSlicer'[Event Hour])&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;VAR SelectedEventHourEnd = MAXX(ALLSELECTED('EventHourSlicer'[Event Hour]), 'EventHourSlicer'[Event Hour])&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;VAR EventHourDifferences = &lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; FILTER(&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ALL('Table 1 (Sheet1)'), &lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table 1 (Sheet1)'[Event Hour] &amp;gt;= SelectedEventHourStart &amp;amp;&amp;amp; &lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table 1 (Sheet1)'[Event Hour] &amp;lt;= SelectedEventHourEnd&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; )&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;VAR AverageDifference = &lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; AVERAGEX(&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; EventHourDifferences, &lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ABS(AvgRate - 'Table 1 (Sheet1)'[Rate])&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; )&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;RETURN&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; AverageDifference&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;P class=""&gt;&lt;STRONG&gt;4.Add Visuals for the Event Hour Slicer:&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;Finally, use the disconnected table to add visuals for the event hour slicer. This will allow you to filter the data based on your selected event hours and display the corresponding results.&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;If this solution works for you, please mark it as a solution.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 27 Apr 2025 09:11:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4669503#M178856</guid>
      <dc:creator>Hakuna_matata</dc:creator>
      <dc:date>2025-04-27T09:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: Average calculation with several conditions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4678544#M179193</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="659067" data-lia-user-login="NG1407" class="lia-mention lia-mention-user"&gt;NG1407&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&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;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 May 2025 17:18:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4678544#M179193</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-05-03T17:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: Average calculation with several conditions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4683573#M179375</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="659067" data-lia-user-login="NG1407" class="lia-mention lia-mention-user"&gt;NG1407&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;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 07 May 2025 17:37:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4683573#M179375</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-05-07T17:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: Average calculation with several conditions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4683980#M179393</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/659067" target="_self"&gt;&lt;SPAN class=""&gt;NG1407&lt;/SPAN&gt;&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;I try to develop based on your requirements and please find the pbix file for you reference.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://cloudbiexpert-my.sharepoint.com/:u:/p/maruthi/EezsnEfBCfhMl_H6thQqmzEBpCFr5V35-PeDC3B9-IkFqg?e=6g5Tza" target="_blank" rel="noopener"&gt;Average calculation with several conditions.pbix&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If this reply helped solve your problem, please consider clicking "Accept as Solution" so others can benefit too.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;And if you found it useful, a quick "Kudos" is always appreciated — thanks!&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best Regards,&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Maruthi&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;LinkedIn -&amp;nbsp;&lt;/SPAN&gt;&lt;A href="http://www.linkedin.com/in/maruthi-siva-prasad/" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;http://www.linkedin.com/in/maruthi-siva-prasad/&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;X&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://x.com/maruthisp" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;Maruthi Siva Prasad - (@MaruthiSP) / X&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 May 2025 05:15:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4683980#M179393</guid>
      <dc:creator>maruthisp</dc:creator>
      <dc:date>2025-05-08T05:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: Average calculation with several conditions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4687911#M179531</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="659067" data-lia-user-login="NG1407" class="lia-mention lia-mention-user"&gt;NG1407&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;If our response addressed by the community member for&amp;nbsp; your query, please mark it as&amp;nbsp;Accept Answer&amp;nbsp;and click&amp;nbsp;Yes&amp;nbsp;if you found it helpful.&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: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Should you have any further questions, feel free to reach out.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Thank you for being a part of the Microsoft Fabric Community Forum!&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 May 2025 16:04:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4687911#M179531</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-05-11T16:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: Average calculation with several conditions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4690237#M179615</link>
      <description>&lt;P&gt;Its not giving correct result. Its giving same value for all customers.&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 07:26:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4690237#M179615</guid>
      <dc:creator>NG1407</dc:creator>
      <dc:date>2025-05-13T07:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: Average calculation with several conditions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4694531#M179790</link>
      <description>&lt;P&gt;It is not working for my scenario&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2025 14:26:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4694531#M179790</guid>
      <dc:creator>NG1407</dc:creator>
      <dc:date>2025-05-15T14:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: Average calculation with several conditions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4710071#M180383</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="659067" data-lia-user-login="NG1407" class="lia-mention lia-mention-user"&gt;NG1407&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P style="margin: 0in;"&gt;&lt;SPAN&gt;Please provide sample data that covers your issue or question&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;completely&lt;/SPAN&gt;&lt;SPAN&gt;, in a&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;usable&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;format (not as a screenshot).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Do not include sensitive information. Do not include anything that is unrelated to the issue or question.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&lt;SPAN&gt;Please show the expected outcome based on the sample data you provided.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523" target="_blank"&gt;&lt;SPAN&gt;How to Get Your Question Answered Quickly - Microsoft Fabric Community&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Power-BI-Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;&lt;SPAN&gt;How to provide sample data in the Power BI Forum - Microsoft Fabric Community&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 May 2025 07:42:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4710071#M180383</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-05-28T07:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: Average calculation with several conditions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4711714#M180454</link>
      <description>&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 May 2025 08:39:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-calculation-with-several-conditions/m-p/4711714#M180454</guid>
      <dc:creator>123abc</dc:creator>
      <dc:date>2025-05-29T08:39:10Z</dc:date>
    </item>
  </channel>
</rss>

