<?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 POWER BI - DAX FORMULA - how do i get the average value for a specific item? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/POWER-BI-DAX-FORMULA-how-do-i-get-the-average-value-for-a/m-p/2934513#M96635</link>
    <description>&lt;P&gt;Say i have a data with the ratings for a particular product&amp;nbsp;&lt;/P&gt;&lt;P&gt;and I want to find the average rating for just one of those products - what is the DAX formula? I am trying but keep getting error messages.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 29 Nov 2022 05:10:49 GMT</pubDate>
    <dc:creator>G_WHO</dc:creator>
    <dc:date>2022-11-29T05:10:49Z</dc:date>
    <item>
      <title>POWER BI - DAX FORMULA - how do i get the average value for a specific item?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/POWER-BI-DAX-FORMULA-how-do-i-get-the-average-value-for-a/m-p/2934513#M96635</link>
      <description>&lt;P&gt;Say i have a data with the ratings for a particular product&amp;nbsp;&lt;/P&gt;&lt;P&gt;and I want to find the average rating for just one of those products - what is the DAX formula? I am trying but keep getting error messages.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 05:10:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/POWER-BI-DAX-FORMULA-how-do-i-get-the-average-value-for-a/m-p/2934513#M96635</guid>
      <dc:creator>G_WHO</dc:creator>
      <dc:date>2022-11-29T05:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: POWER BI - DAX FORMULA - how do i get the average value for a specific item?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/POWER-BI-DAX-FORMULA-how-do-i-get-the-average-value-for-a/m-p/2935092#M96667</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="478650" data-lia-user-login="G_WHO" class="lia-mention lia-mention-user"&gt;G_WHO&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;It would perhaps help more if you provide little more details.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 08:47:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/POWER-BI-DAX-FORMULA-how-do-i-get-the-average-value-for-a/m-p/2935092#M96667</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-11-29T08:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: POWER BI - DAX FORMULA - how do i get the average value for a specific item?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/POWER-BI-DAX-FORMULA-how-do-i-get-the-average-value-for-a/m-p/2935484#M96703</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="478650" data-lia-user-login="G_WHO" class="lia-mention lia-mention-user"&gt;G_WHO&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;you can achieve this by using "AllSelected" Dax.&lt;BR /&gt;As you can see in the below image, when i am selecting the product from slicer the 1st table is giving me the average of that product where as the 2nd one is giving me Sales for it.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dax--&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Average of Perticular Product = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&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; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;AVERAGE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Orders&lt;/SPAN&gt;&lt;SPAN&gt;[Sales]&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;ALLSELECTED&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Orders&lt;/SPAN&gt;&lt;SPAN&gt;[Product Name]&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;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Please mark my post as Answer if it solves your issue.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 10:16:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/POWER-BI-DAX-FORMULA-how-do-i-get-the-average-value-for-a/m-p/2935484#M96703</guid>
      <dc:creator>rautaniket0077</dc:creator>
      <dc:date>2022-11-29T10:16:35Z</dc:date>
    </item>
  </channel>
</rss>

