<?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 of measure in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/2127158#M157151</link>
    <description>&lt;P&gt;here the problem to overcame is : having already a calculated Measure HOW is possible to get the average? the DAX function average takes just column as input not measure ! so the question is not find another way to calculate my measurement BUT how make the average of it !&lt;/P&gt;</description>
    <pubDate>Mon, 11 Oct 2021 11:28:23 GMT</pubDate>
    <dc:creator>rdedonat</dc:creator>
    <dc:date>2021-10-11T11:28:23Z</dc:date>
    <item>
      <title>Average of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/50935#M157138</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I calculated the measure for quarter 1 and quarter 2.&lt;/P&gt;&lt;P&gt;Where each value is basically the average of 13 weeks values for each group.&lt;/P&gt;&lt;P&gt;Now I want to calculate the average of only these values which are displayed in the visual table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Group Name&lt;/TD&gt;&lt;TD&gt;2016-Quarter 1&lt;/TD&gt;&lt;TD&gt;2016-Quarter 2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;96.99%&lt;/TD&gt;&lt;TD&gt;87.86%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;97.88%&lt;/TD&gt;&lt;TD&gt;98.98%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;98.46%&lt;/TD&gt;&lt;TD&gt;97.57%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;D&lt;/TD&gt;&lt;TD&gt;99.20%&lt;/TD&gt;&lt;TD&gt;99.86%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;E&lt;/TD&gt;&lt;TD&gt;100.00%&lt;/TD&gt;&lt;TD&gt;100.00%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;F&lt;/TD&gt;&lt;TD&gt;98.51%&lt;/TD&gt;&lt;TD&gt;98.75%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;G&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;H&lt;/TD&gt;&lt;TD&gt;94.41%&lt;/TD&gt;&lt;TD&gt;94.13%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;I&lt;/TD&gt;&lt;TD&gt;89.69%&lt;/TD&gt;&lt;TD&gt;96.48%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;G&lt;/TD&gt;&lt;TD&gt;98.84%&lt;/TD&gt;&lt;TD&gt;97.76%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;K&lt;/TD&gt;&lt;TD&gt;99.69%&lt;/TD&gt;&lt;TD&gt;99.25%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;L&lt;/TD&gt;&lt;TD&gt;99.64%&lt;/TD&gt;&lt;TD&gt;99.13%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;M&lt;/TD&gt;&lt;TD&gt;96.37%&lt;/TD&gt;&lt;TD&gt;95.08%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;N&lt;/TD&gt;&lt;TD&gt;94.81%&lt;/TD&gt;&lt;TD&gt;97.64%&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Mon, 18 Jul 2016 16:33:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/50935#M157138</guid>
      <dc:creator>aktripathi2506</dc:creator>
      <dc:date>2016-07-18T16:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: Average of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/50938#M157139</link>
      <description>&lt;P&gt;You can use CALCULATE and apply filter for ALLSELECTED. Your formula will look like&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;New Measure = CALCULATE(AVERAGE([column]),ALLSELECTED([table or column]))&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 16:45:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/50938#M157139</guid>
      <dc:creator>Habib</dc:creator>
      <dc:date>2016-07-18T16:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: Average of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/50956#M157140</link>
      <description>&lt;P&gt;Thank you for reply.&lt;/P&gt;&lt;P&gt;I have measure which has been calculated already, I want the average of these mesaures.&lt;/P&gt;&lt;P&gt;The option you suggested is not working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any other suggestions guys?&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 18:12:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/50956#M157140</guid>
      <dc:creator>aktripathi2506</dc:creator>
      <dc:date>2016-07-18T18:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: Average of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/50970#M157141</link>
      <description>&lt;P&gt;hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="11316" data-lia-user-login="aktripathi2506" class="lia-mention lia-mention-user"&gt;aktripathi2506﻿&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dou you have 1 measure or 2 measure?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have 2 you can do this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NewMeasure=DIVIDE([Measure1]+[Measure2];2)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 19:41:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/50970#M157141</guid>
      <dc:creator>Vvelarde</dc:creator>
      <dc:date>2016-07-18T19:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: Average of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/50980#M157142</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="9309" data-lia-user-login="Vvelarde" class="lia-mention lia-mention-user"&gt;Vvelarde﻿&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think I did not explained well.. you misunderstood me.&lt;/P&gt;&lt;P&gt;There is only one measure for different groups A, B, C, D...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My raw data is having columns&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Week&lt;/TD&gt;&lt;TD&gt;Hours spent&lt;/TD&gt;&lt;TD&gt;Total available Hours&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;80&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;80&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Measure calculate average of efficiency of hours spent (1 - Hour spent/Total available Hours) for 13 weeks for each groups.&lt;/P&gt;&lt;P&gt;by using the following formula:&lt;/P&gt;&lt;P&gt;Measure = AVERAGEX(SUMMARIZE(Table, Table[week], "Sum of Hours", SUM(Table[hours spent]), "Average available", AVERAGE(Table[Available hours for the week])), 1 - DIVIDE([Sum of Hours], [Average available]))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As a result I get this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Group Name&lt;/TD&gt;&lt;TD&gt;2016-Quarter 1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;96.99%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;97.88%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;98.46%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;D&lt;/TD&gt;&lt;TD&gt;99.20%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;E&lt;/TD&gt;&lt;TD&gt;100.00%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;F&lt;/TD&gt;&lt;TD&gt;98.51%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;G&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;H&lt;/TD&gt;&lt;TD&gt;94.41%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;I&lt;/TD&gt;&lt;TD&gt;89.69%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;G&lt;/TD&gt;&lt;TD&gt;98.84%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;K&lt;/TD&gt;&lt;TD&gt;99.69%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;L&lt;/TD&gt;&lt;TD&gt;99.64%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;M&lt;/TD&gt;&lt;TD&gt;96.37%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;N&lt;/TD&gt;&lt;TD&gt;94.81%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Average&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;97.27%&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now&amp;nbsp;I want to calculate the average of these measure for different groups together shown in the table.&lt;/P&gt;&lt;P&gt;So basically my desired output is 97.27 in this example. Average of the measure for different groups.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 20:22:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/50980#M157142</guid>
      <dc:creator>aktripathi2506</dc:creator>
      <dc:date>2016-07-18T20:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: Average of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/50995#M157143</link>
      <description>&lt;P&gt;Now if I understood correctly, you want average of all groups and that should remain same whatever selection you made?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please add a new measure which should be copy of exisitng measure and add CALCULATE function along with filters..... something like this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;AvgMeasure = CALCULATE(AVERAGEX(SUMMARIZE(Table, Table[week], "Sum of Hours", SUM(Table[hours spent]), "Average available", AVERAGE(Table[Available hours for the week])), 1 - DIVIDE([Sum of Hours], [Average available])),ALL(&lt;FONT color="#FF0000"&gt;GroupName&lt;/FONT&gt;))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;change the red text to whatever your table name is for Groups. This will give you average of all groups.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 21:44:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/50995#M157143</guid>
      <dc:creator>Habib</dc:creator>
      <dc:date>2016-07-18T21:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Average of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/50999#M157144</link>
      <description>&lt;P&gt;I think Habib's measure (or something similar) will work, but repeating the code seems like awful style...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you just do something like&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Measure2 = AVERAGEX(SUMMARIZE(Table, Table[GroupName], "toAverage", [Measure]), [Measure])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;? If you don't need the initial measure at all, then you could in-line the code, but even in that case I think splitting it out adds some clarity (it's hard enough to read as it is).&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 22:20:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/50999#M157144</guid>
      <dc:creator>jahida</dc:creator>
      <dc:date>2016-07-18T22:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: Average of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/339858#M157145</link>
      <description>&lt;P&gt;I want to calculate the average of a measure over my entire data(basically without any grouping) and I am not able to perform it by current solution provided. This is required as the visual I am using doesn't supports an average line.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 08:52:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/339858#M157145</guid>
      <dc:creator>aditya118</dc:creator>
      <dc:date>2018-01-17T08:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: Average of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/466879#M157147</link>
      <description>&lt;P&gt;Just turn it into a calculated column instead of a measure.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jul 2018 16:45:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/466879#M157147</guid>
      <dc:creator>dyee4613</dc:creator>
      <dc:date>2018-07-19T16:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: Average of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/826609#M157148</link>
      <description>&lt;P&gt;It worked!&lt;BR /&gt;&lt;BR /&gt;However, I only can apply this measure for one group, right? In my case, I chose by date. But I also want to see the result by name.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there some way to do it by 2 groups?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 19:20:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/826609#M157148</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-23T19:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: Average of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/1143565#M157149</link>
      <description>&lt;P&gt;So what did you do, did you use it as calculated column?&lt;/P&gt;&lt;P&gt;I am in the same situation tight now.&lt;/P&gt;&lt;P&gt;I created a measure as&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Mentor_Score = CALCULATE(([.Mentor_Prep]*0.25) + ([.Mentor_Experience] * 0.25) + ([.Mentor_NPS] * 0.5) * 1.00)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Now I want to find the average Mentor_Score per month and year, please how do I achieve this?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 05 Jun 2020 06:14:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/1143565#M157149</guid>
      <dc:creator>sp3jossy</dc:creator>
      <dc:date>2020-06-05T06:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: Average of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/1191602#M157150</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think I am having a similar problem.&lt;/P&gt;&lt;P&gt;What was the best solution?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jun 2020 09:01:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/1191602#M157150</guid>
      <dc:creator>GerlofVisser</dc:creator>
      <dc:date>2020-06-30T09:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: Average of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/2127158#M157151</link>
      <description>&lt;P&gt;here the problem to overcame is : having already a calculated Measure HOW is possible to get the average? the DAX function average takes just column as input not measure ! so the question is not find another way to calculate my measurement BUT how make the average of it !&lt;/P&gt;</description>
      <pubDate>Mon, 11 Oct 2021 11:28:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/2127158#M157151</guid>
      <dc:creator>rdedonat</dc:creator>
      <dc:date>2021-10-11T11:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: Average of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/3321330#M157152</link>
      <description>&lt;P&gt;This worked for my issue. Thanks!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Jul 2023 10:38:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/3321330#M157152</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-08T10:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: Average of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/4007291#M157153</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;I'm new here but I think you can use&amp;nbsp;&lt;SPAN&gt;AVERAGEX to solve your problem, I've read the documentation and it says this in there.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The AVERAGEX function can take as its argument an expression that is evaluated for each row in a table. This enables you to perform calculations and then take the average of the calculated values.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2024 15:59:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/4007291#M157153</guid>
      <dc:creator>AtlasDLion</dc:creator>
      <dc:date>2024-06-24T15:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: Average of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/4007341#M157154</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="765115" data-lia-user-login="AtlasDLion" class="lia-mention lia-mention-user"&gt;AtlasDLion&lt;/a&gt;&amp;nbsp;, the reply &lt;STRONG&gt;Accepted as Solution&lt;/STRONG&gt; in this legacy post added in 2016 used AVERAGEX in the DAX formula demonstrated by both&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="9251" data-lia-user-login="Habib" class="lia-mention lia-mention-user"&gt;Habib&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="10555" data-lia-user-login="jahida" class="lia-mention lia-mention-user"&gt;jahida&lt;/a&gt;&amp;nbsp;.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2024 16:21:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-measure/m-p/4007341#M157154</guid>
      <dc:creator>foodd</dc:creator>
      <dc:date>2024-06-24T16:21:29Z</dc:date>
    </item>
  </channel>
</rss>

