<?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: Averageifs and Countifs in Power Bi in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2722594#M83087</link>
    <description>&lt;P&gt;You could create a calculation item like&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;CALCULATE (
    SELECTEDMEASURE (),
    'BV37CC'[CONTRIBUTION COST] &amp;gt;= 20000
        &amp;amp;&amp;amp; 'BV37CC'[CONTRIBUTION COST] &amp;lt;= 21000
)
&lt;/LI-CODE&gt;
&lt;P&gt;and then repeat that for each group of values. This would work for both the average and the count&lt;/P&gt;</description>
    <pubDate>Wed, 24 Aug 2022 08:42:04 GMT</pubDate>
    <dc:creator>johnt75</dc:creator>
    <dc:date>2022-08-24T08:42:04Z</dc:date>
    <item>
      <title>Averageifs and Countifs in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2696132#M81369</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Help, I have 2 formulas in excel AVERAGEIFS and COUNTIFS to get the average of the numbers between 20000 and 21000 and count the numbers that has that values, I already got the table filtered in power bi with same values but cant create the formula to get the information from excel,&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2022 20:12:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2696132#M81369</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-11T20:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: Averageifs and Countifs in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2697454#M81473</link>
      <description>&lt;P&gt;You can create measures like&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Num rows = COUNTROWS('Table')

Avg = AVERAGE( 'Table'[Cost])&lt;/LI-CODE&gt;&lt;P&gt;and those will work with any filters you have applied. If you want to explicitly bake the filters in to the measures, you could do&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Num rows between 20000 &amp;amp; 21000 =
CALCULATE (
    SUM ( 'Table'[Cost] ),
    'Table'[Cost] &amp;gt;= 20000
        &amp;amp;&amp;amp; 'Table'[Cost] &amp;lt;= 21000
)

Average between 20000 &amp;amp; 21000 =
CALCULATE (
    AVERAGE ( 'Table'[Cost] ),
    'Table'[Cost] &amp;gt;= 20000
        &amp;amp;&amp;amp; 'Table'[Cost] &amp;lt;= 21000
)&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 12 Aug 2022 13:13:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2697454#M81473</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-08-12T13:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: Averageifs and Countifs in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2701230#M81778</link>
      <description>&lt;P&gt;what if I need it to be a single table for all calculations example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I need it like excel:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;VOL&lt;/TD&gt;&lt;TD&gt;COST&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 20,976.97&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 21,463.80&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;88&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 22,505.42&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;39&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 23,170.54&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 24,677.62&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 25,570.07&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;14&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 26,418.15&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Mon, 15 Aug 2022 19:53:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2701230#M81778</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-15T19:53:15Z</dc:date>
    </item>
    <item>
      <title>Re: Averageifs and Countifs in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2702363#M81845</link>
      <description>&lt;P&gt;Rather than creating a bunch of individual measures, one for each number range, you could create a calculation group, where each calculation item filters for a different range. That way you could drop both count and average measures onto the same visual with the calculation group and it will show all ranges at the same time&lt;/P&gt;</description>
      <pubDate>Tue, 16 Aug 2022 08:16:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2702363#M81845</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-08-16T08:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: Averageifs and Countifs in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2713531#M82504</link>
      <description>&lt;P&gt;How can I create the calculation group, I tried to put all the measures in the same calculation group but the calculation group is showing error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;FONT&gt;&lt;FONT&gt;Avg Calc= &lt;/FONT&gt;&lt;FONT&gt; CALCULATE&lt;/FONT&gt; &lt;FONT&gt;(&lt;/FONT&gt; &lt;FONT&gt;AVERAGE&lt;/FONT&gt; &lt;FONT&gt;(&lt;/FONT&gt;&lt;FONT&gt; 'BV37CC'[CONTRIBUTION COST]&lt;/FONT&gt;&lt;FONT&gt;)&lt;/FONT&gt;&lt;FONT&gt;, 'BV37CC'[CONTRIBUTION COST] &amp;gt;= &lt;/FONT&gt;&lt;FONT&gt;20000&lt;/FONT&gt;&lt;FONT&gt; &amp;amp;&amp;amp; 'BV37CC'[CONTRIBUTION COST] &amp;lt;= &lt;/FONT&gt;&lt;FONT&gt;21000&lt;/FONT&gt;&lt;FONT&gt; )&lt;/FONT&gt; &lt;FONT&gt;AVERAGE&lt;/FONT&gt; &lt;FONT&gt;(&lt;/FONT&gt;&lt;FONT&gt; 'BV37CC'[CONTRIBUTION COST]&lt;/FONT&gt;&lt;FONT&gt;)&lt;/FONT&gt;&lt;FONT&gt;, 'BV37CC'[CONTRIBUTION COST] &amp;gt;= &lt;/FONT&gt;&lt;FONT&gt;21000&lt;/FONT&gt;&lt;FONT&gt; &amp;amp;&amp;amp; 'BV37CC'[CONTRIBUTION COST] &amp;lt;= &lt;/FONT&gt;&lt;FONT&gt;22000&lt;/FONT&gt;&lt;FONT&gt; )&lt;/FONT&gt; &lt;FONT&gt;AVERAGE&lt;/FONT&gt; &lt;FONT&gt;(&lt;/FONT&gt;&lt;FONT&gt; 'BV37CC'[CONTRIBUTION COST]&lt;/FONT&gt;&lt;FONT&gt;)&lt;/FONT&gt;&lt;FONT&gt;, 'BV37CC'[CONTRIBUTION COST] &amp;gt;= &lt;/FONT&gt;&lt;FONT&gt;22000&lt;/FONT&gt;&lt;FONT&gt; &amp;amp;&amp;amp; 'BV37CC'[CONTRIBUTION COST] &amp;lt;= &lt;/FONT&gt;&lt;FONT&gt;23000&lt;/FONT&gt;&lt;FONT&gt; )&lt;/FONT&gt; &lt;FONT&gt;AVERAGE&lt;/FONT&gt; &lt;FONT&gt;(&lt;/FONT&gt;&lt;FONT&gt; 'BV37CC'[CONTRIBUTION COST]&lt;/FONT&gt;&lt;FONT&gt;)&lt;/FONT&gt;&lt;FONT&gt;, 'BV37CC'[CONTRIBUTION COST] &amp;gt;= &lt;/FONT&gt;&lt;FONT&gt;23000&lt;/FONT&gt;&lt;FONT&gt; &amp;amp;&amp;amp; 'BV37CC'[CONTRIBUTION COST] &amp;lt;= &lt;/FONT&gt;&lt;FONT&gt;24000&lt;/FONT&gt;&lt;FONT&gt; )&lt;/FONT&gt; &lt;FONT&gt;AVERAGE&lt;/FONT&gt; &lt;FONT&gt;(&lt;/FONT&gt;&lt;FONT&gt; 'BV37CC'[CONTRIBUTION COST]&lt;/FONT&gt;&lt;FONT&gt;)&lt;/FONT&gt;&lt;FONT&gt;, 'BV37CC'[CONTRIBUTION COST] &amp;gt;= &lt;/FONT&gt;&lt;FONT&gt;24000&lt;/FONT&gt;&lt;FONT&gt; &amp;amp;&amp;amp; 'BV37CC'[CONTRIBUTION COST] &amp;lt;= &lt;/FONT&gt;&lt;FONT&gt;25000&lt;/FONT&gt;&lt;FONT&gt; )&lt;/FONT&gt; &lt;FONT&gt;AVERAGE&lt;/FONT&gt; &lt;FONT&gt;(&lt;/FONT&gt;&lt;FONT&gt; 'BV37CC'[CONTRIBUTION COST]&lt;/FONT&gt;&lt;FONT&gt;)&lt;/FONT&gt;&lt;FONT&gt;, 'BV37CC'[CONTRIBUTION COST] &amp;gt;= &lt;/FONT&gt;&lt;FONT&gt;25000&lt;/FONT&gt;&lt;FONT&gt; &amp;amp;&amp;amp; 'BV37CC'[CONTRIBUTION COST] &amp;lt;= &lt;/FONT&gt;&lt;FONT&gt;26000&lt;/FONT&gt;&lt;FONT&gt; )&lt;/FONT&gt; &lt;FONT&gt;AVERAGE&lt;/FONT&gt; &lt;FONT&gt;(&lt;/FONT&gt;&lt;FONT&gt; 'BV37CC'[CONTRIBUTION COST]&lt;/FONT&gt;&lt;FONT&gt;)&lt;/FONT&gt;&lt;FONT&gt;, 'BV37CC'[CONTRIBUTION COST] &amp;gt;= &lt;/FONT&gt;&lt;FONT&gt;26000&lt;/FONT&gt;&lt;FONT&gt; &amp;amp;&amp;amp; 'BV37CC'[CONTRIBUTION COST] &amp;lt;= &lt;/FONT&gt;&lt;FONT&gt;27000&lt;/FONT&gt;&lt;FONT&gt; )&lt;/FONT&gt;&lt;/FONT&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2022 21:30:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2713531#M82504</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-19T21:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: Averageifs and Countifs in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2716098#M82688</link>
      <description>&lt;P&gt;Each one would need to be its own calculation item&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2022 08:09:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2716098#M82688</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-08-22T08:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: Averageifs and Countifs in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2721129#M82988</link>
      <description>&lt;P&gt;I am trying to create calculation items but I cant create them, it only send -1 value, I think I am missing the SELECTEDMEASURE () thing:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you show me an example with the following formula:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&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;AVERAGE&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;'BV37CC'&lt;/SPAN&gt;&lt;SPAN&gt;[CONTRIBUTION COST]&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;'BV37CC'&lt;/SPAN&gt;&lt;SPAN&gt;[CONTRIBUTION COST]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;gt;= &lt;/SPAN&gt;&lt;SPAN&gt;20000&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;'BV37CC'&lt;/SPAN&gt;&lt;SPAN&gt;[CONTRIBUTION COST]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;= &lt;/SPAN&gt;&lt;SPAN&gt;21000&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 23 Aug 2022 17:23:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2721129#M82988</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-23T17:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: Averageifs and Countifs in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2722594#M83087</link>
      <description>&lt;P&gt;You could create a calculation item like&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;CALCULATE (
    SELECTEDMEASURE (),
    'BV37CC'[CONTRIBUTION COST] &amp;gt;= 20000
        &amp;amp;&amp;amp; 'BV37CC'[CONTRIBUTION COST] &amp;lt;= 21000
)
&lt;/LI-CODE&gt;
&lt;P&gt;and then repeat that for each group of values. This would work for both the average and the count&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2022 08:42:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2722594#M83087</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-08-24T08:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: Averageifs and Countifs in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2723997#M83198</link>
      <description>&lt;P&gt;I already created calculation item but when I am creating the Matrix Im not sure why the formula is not giving me the correct values as the separeted calculations, I know that the formula of the calculation item goes into the Rows field but what goes into the values field?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2022 17:09:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2723997#M83198</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-24T17:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: Averageifs and Countifs in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2725312#M83278</link>
      <description>&lt;P&gt;The base measure goes into the values, so whatever works out your count or average&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 08:10:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2725312#M83278</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-08-25T08:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: Averageifs and Countifs in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2726424#M83357</link>
      <description>&lt;P&gt;Looks that I am missing something the formulas instead of get the AVG of the selected range are just SUM the total of the selected range as following:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Do you know how can I get the AVG of those?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using the formula:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;FONT&gt;&lt;FONT&gt;CALCULATE&lt;/FONT&gt; &lt;FONT&gt;(&lt;/FONT&gt; &lt;FONT&gt;SELECTEDMEASURE&lt;/FONT&gt; &lt;FONT&gt;()&lt;/FONT&gt;&lt;FONT&gt;, 'BV37CC'[CONTRIBUTION COST] &amp;gt;= &lt;/FONT&gt;&lt;FONT&gt;20000&lt;/FONT&gt;&lt;FONT&gt; &amp;amp;&amp;amp; 'BV37CC'[CONTRIBUTION COST] &amp;lt;= &lt;/FONT&gt;&lt;FONT&gt;21000&lt;/FONT&gt;&lt;FONT&gt; )&lt;/FONT&gt;&lt;/FONT&gt;&lt;/PRE&gt;&lt;P&gt;Instead of the single measure from PBI&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Avg 20-21k = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&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;AVERAGE&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;'BV37CC'&lt;/SPAN&gt;&lt;SPAN&gt;[CONTRIBUTION COST]&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;'BV37CC'&lt;/SPAN&gt;&lt;SPAN&gt;[CONTRIBUTION COST]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;gt;= &lt;/SPAN&gt;&lt;SPAN&gt;20000&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;'BV37CC'&lt;/SPAN&gt;&lt;SPAN&gt;[CONTRIBUTION COST]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;= &lt;/SPAN&gt;&lt;SPAN&gt;21000&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 25 Aug 2022 14:14:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2726424#M83357</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-25T14:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: Averageifs and Countifs in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2726454#M83359</link>
      <description>&lt;P&gt;Create a measure like&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Avg Measure = AVERAGE ( 'BV37CC'[CONTRIBUTION COST])&lt;/LI-CODE&gt;
&lt;P&gt;and use that in conjunction with the calculation group.&lt;/P&gt;
&lt;P&gt;Be careful with the measure name, as I think both AVG and AVERAGE are reserved words.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 14:26:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Averageifs-and-Countifs-in-Power-Bi/m-p/2726454#M83359</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-08-25T14:26:41Z</dc:date>
    </item>
  </channel>
</rss>

