<?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: Trouble Calculating a Dynamic Average in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4314009#M171306</link>
    <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much for your help. The solution is now showing up like this (it should show up as all 17s) using the above formula.&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;</description>
    <pubDate>Wed, 04 Dec 2024 20:19:19 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-12-04T20:19:19Z</dc:date>
    <item>
      <title>Trouble Calculating a Dynamic Average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4312112#M171258</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to add a new measure that dynamically calculates the average of all the values based on the parameter selection and I am getting an error saying "parameter is not the correct type". I would like this new column to spit out the 17 that is highlighted in the screenshot below.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help is greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&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;</description>
      <pubDate>Tue, 03 Dec 2024 19:08:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4312112#M171258</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-03T19:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble Calculating a Dynamic Average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4312149#M171259</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;You had used a measure as Average argument where it's only accept &lt;STRONG&gt;Column &lt;/STRONG&gt;refrence&amp;nbsp;&lt;STRONG&gt;not&lt;/STRONG&gt; Measure, try to put &lt;STRONG&gt;score&lt;/STRONG&gt; column that &lt;STRONG&gt;shown&lt;/STRONG&gt; in &lt;SPAN&gt;screenshot&amp;nbsp;.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Dangar&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2024 20:14:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4312149#M171259</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2024-12-03T20:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble Calculating a Dynamic Average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4312203#M171264</link>
      <description>&lt;P&gt;hi Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;try like:&lt;/P&gt;
&lt;P&gt;average =&lt;/P&gt;
&lt;P&gt;AVERAGEX(&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; VALUES(data[sub category]),&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; [KO Profitability Score]&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2024 21:04:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4312203#M171264</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2024-12-03T21:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble Calculating a Dynamic Average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4313839#M171299</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much for getting back to me. So when I update per your suggestion above I just get the same values, not the '17' value I was expecting. The first column is based on a parameter and changes between category and sub-category.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Average KO Profitability Score = &lt;/SPAN&gt;&lt;SPAN&gt;averagex&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;('Field Select Parameter'[Selection Parameter Fields]),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[KO Profitability Score])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2024 16:36:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4313839#M171299</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-04T16:36:05Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble Calculating a Dynamic Average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4313895#M171302</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Try below amended measure&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Average KO Profitability Score = 
averagex (
 allselected(
      'Field Select Parameter'[Selection Parameter Fields]),
       [KO Profitability Score]
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Dangar&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2024 17:36:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4313895#M171302</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2024-12-04T17:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble Calculating a Dynamic Average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4314009#M171306</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much for your help. The solution is now showing up like this (it should show up as all 17s) using the above formula.&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;</description>
      <pubDate>Wed, 04 Dec 2024 20:19:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4314009#M171306</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-04T20:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble Calculating a Dynamic Average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4316273#M171387</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks to&amp;nbsp;Dangar332&amp;nbsp; and&amp;nbsp;FreemanZ&amp;nbsp; for their quick replies. I have some other thoughts to add:&lt;/P&gt;
&lt;P&gt;Based on your description, the Score you are displaying on the visual object is the measure, correct? If I have misunderstood you please clarify in a follow up reply.&lt;BR /&gt;Then we can create a new measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Avg = CALCULATE([Score],ALLSELECTED('Table'))&lt;/LI-CODE&gt;
&lt;P&gt;Then the result is as follows.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Neeko Tang&lt;/P&gt;
&lt;P&gt;If this post  &lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it as the solution &lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 03:30:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4316273#M171387</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-06T03:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble Calculating a Dynamic Average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4317249#M171414</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much for your continuous help here.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The one challenge here is that the "sub-category" field comes from a parameter, which I believe may require some differences in the formula.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You'll see when I create the formula per your suggestion:&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Average Score = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt; ([Score], &lt;/SPAN&gt;&lt;SPAN&gt;ALLSELECTED&lt;/SPAN&gt;&lt;SPAN&gt;('Field Select Parameter'))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I get the same figures as my existing column.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 06 Dec 2024 14:54:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4317249#M171414</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-06T14:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble Calculating a Dynamic Average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4317270#M171415</link>
      <description>&lt;P&gt;hi Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;could you depict your expected result with a table?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 15:09:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4317270#M171415</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2024-12-06T15:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble Calculating a Dynamic Average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4320083#M171514</link>
      <description>&lt;P&gt;Hi there! Can you please clarify what you mean?&lt;/P&gt;</description>
      <pubDate>Mon, 09 Dec 2024 16:48:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4320083#M171514</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-09T16:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble Calculating a Dynamic Average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4321140#M171553</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It works fine through my tests. Can you provide sample pbix files (taking care to protect private data) for us to test?&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Refer to:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FCommunity-Blog%2FHow-to-provide-sample-data-in-the-Power-BI-Forum%2Fba-p%2F963216&amp;amp;data=05%7C01%7Cv-jianboli%40microsoft.com%7Ca7ce12be0f454896a61208da8034281b%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637963258750159993%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;amp;sdata=orVyE0%2FImc2MEFUqXtCveK0uf33594f67ZDxb8ybuNI%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;How to provide sample data in the Power BI Forum&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FCommunity-Blog%2FHow-to-Get-Your-Question-Answered-Quickly%2Fba-p%2F38490&amp;amp;data=05%7C01%7Cv-jianboli%40microsoft.com%7Ca7ce12be0f454896a61208da8034281b%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637963258750159993%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;amp;sdata=XocTq9o6TjxbxJqTak20E3kKp7q5HxKTNZef7xESMV0%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;How to Get Your Question Answered Quickly&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Neeko Tang&lt;/P&gt;
&lt;P&gt;If this post  &lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it as the solution &lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Dec 2024 07:23:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4321140#M171553</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-10T07:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble Calculating a Dynamic Average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4321926#M171577</link>
      <description>&lt;P&gt;Hi Neeko,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please find a sample file &lt;A href="https://drive.google.com/file/d/1ZwHd0eAaQPTLoKe6yingJy6F3LYP-1Ud/view?usp=sharing" target="_self"&gt;here&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please let me know if you have any troubles with access.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Maggie&lt;/P&gt;</description>
      <pubDate>Tue, 10 Dec 2024 14:36:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4321926#M171577</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-10T14:36:26Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble Calculating a Dynamic Average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4322677#M171613</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create this measure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Average Score = 
CALCULATE ([Score], ALLSELECTED('OST'))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Neeko Tang&lt;/P&gt;
&lt;P&gt;If this post &lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2024 02:31:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4322677#M171613</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-11T02:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble Calculating a Dynamic Average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4324145#M171673</link>
      <description>&lt;P&gt;This worked! Thank you so much everyone for all of the assistance!&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2024 14:50:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4324145#M171673</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-11T14:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble Calculating a Dynamic Average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4324460#M171691</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for the help on this. It appears that while that solution worked for that particular instance, I am having trouble applying correctly to another instance. As you see in the screenshot, the "total" is showing as 19, however, that is incorrect as the average should be closer to 9. Do you have any idea why this might be?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appreciate any assistance here in advance. Thank you so much!&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;</description>
      <pubDate>Wed, 11 Dec 2024 19:01:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4324460#M171691</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-11T19:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble Calculating a Dynamic Average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4328077#M171816</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;- just following up on the above. If you have any insight into this it would be greatly appreciated. Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2024 13:52:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trouble-Calculating-a-Dynamic-Average/m-p/4328077#M171816</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-13T13:52:16Z</dc:date>
    </item>
  </channel>
</rss>

