<?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: Power BI Dax to Calculate the average in 3 periods in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Power-BI-Dax-to-Calculate-the-average-in-3-periods/m-p/2619431#M76238</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the Table Measures, I have a formula for Quotes Per period with the DAX that I need to use to apply in the rolling 3 periods starting in 2021_04&lt;BR /&gt;The Output will be&lt;BR /&gt;2021_06 - 2021_04 + 2021_05 + 2021_06 = (17+15+9)/3&lt;BR /&gt;2021_07 - 2021_05 + 2021_06 + 2021_07 = (15+9+16)/3&lt;BR /&gt;and so on&lt;/P&gt;&lt;P&gt;I started a new formula in the field trying to join the first calculation with the rolling 3 periods the formula is in Table Measures name Measure&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/file/d/1jrdtKTxnvgrEC_FAi4IPjHg3M5j17-yE/view?usp=sharing" target="_self"&gt;DAX to calculate the average in the following 3 periods &lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;</description>
    <pubDate>Tue, 05 Jul 2022 09:40:04 GMT</pubDate>
    <dc:creator>ofeliajesus</dc:creator>
    <dc:date>2022-07-05T09:40:04Z</dc:date>
    <item>
      <title>Power BI Dax to Calculate the average in 3 periods</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Power-BI-Dax-to-Calculate-the-average-in-3-periods/m-p/2609720#M75648</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have two below tables in Dim_Date the Period doesn't correspond to exact months and first I calculated a measure to Divide the count of records per region by NumofWeeks.&lt;/P&gt;&lt;P&gt;The Num of the week is always the same in the same period.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Divide per region week =&lt;BR /&gt;VAR TotalCountPerRegion = COUNT(Table1[Region])&lt;BR /&gt;VAR tblNumOfWeeksInPeriod=&lt;BR /&gt;SUMMARIZE(&lt;BR /&gt;DimDate&lt;BR /&gt;,DimDate[Period]&lt;BR /&gt;,DimDate[NumofWeeks]&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;VAR SuMOfWeeksInPeriod = SUMX(tblNumOfWeeksInPeriod,DimDate[NumofWeeks])&lt;/P&gt;&lt;P&gt;RETURN&lt;BR /&gt;MROUND(&lt;BR /&gt;DIVIDE(&lt;BR /&gt;TotalCountPerRegion&lt;BR /&gt;,SuMOfWeeksInPeriod&lt;BR /&gt;)&lt;BR /&gt;,1&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With the formula, I get the following table&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want a new formula to calculate the average of the period with 2 following periods Example&lt;BR /&gt;Average 2021_04 = 2021_04 + 2021_05 + 2021_06 = (17+15+9)/3&lt;/P&gt;&lt;P&gt;Average 2021_05 = 2021_05 + 2021_06 + 2021_07 = (15+9+16)/3&lt;BR /&gt;and so on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 14:09:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Power-BI-Dax-to-Calculate-the-average-in-3-periods/m-p/2609720#M75648</guid>
      <dc:creator>ofeliajesus</dc:creator>
      <dc:date>2022-06-29T14:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Dax to Calculate the average in 3 periods</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Power-BI-Dax-to-Calculate-the-average-in-3-periods/m-p/2616426#M76090</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="407078" data-lia-user-login="ofeliajesus" class="lia-mention lia-mention-user"&gt;ofeliajesus&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I have create a simple sample. Please refer to it to see if it helps you.&lt;/P&gt;
&lt;P&gt;Create a date column.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;date = DATE(LEFT('Table (2)'[Period],4),RIGHT('Table (2)'[Period],2),1)&lt;/LI-CODE&gt;
&lt;P&gt;Then create a measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure =
VAR _MONTH =
    ( EDATE ( MAX ( 'Table (2)'[date] ), -3 ) )
RETURN
    CALCULATE (
        AVERAGE ( 'Table (2)'[Divider period] ),
        FILTER (
            ALL ( 'Table (2)' ),
            'Table (2)'[date] &amp;gt;= _MONTH
                &amp;amp;&amp;amp; 'Table (2)'[date] &amp;lt;= SELECTEDVALUE ( 'Table (2)'[date] )
        )
    )
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;If I have misunderstood your meaning, please provide your pbix file without privacy information and desired output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;SPAN&gt;Best Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Community Support Team _ Polly&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jul 2022 06:23:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Power-BI-Dax-to-Calculate-the-average-in-3-periods/m-p/2616426#M76090</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-04T06:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Dax to Calculate the average in 3 periods</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Power-BI-Dax-to-Calculate-the-average-in-3-periods/m-p/2617266#M76109</link>
      <description>&lt;P&gt;Thank you ...&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to share a pbix file is it possible seems I don't have an option available to insert a file ...&amp;nbsp;&lt;/P&gt;&lt;P&gt;am I missing some button?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My real measure is more complex because I already have a measure to apply to the 3-month average ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jul 2022 11:05:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Power-BI-Dax-to-Calculate-the-average-in-3-periods/m-p/2617266#M76109</guid>
      <dc:creator>ofeliajesus</dc:creator>
      <dc:date>2022-07-04T11:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Dax to Calculate the average in 3 periods</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Power-BI-Dax-to-Calculate-the-average-in-3-periods/m-p/2617689#M76131</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I decided to copy/ paste it here&amp;nbsp;&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the following Dax&amp;nbsp;&lt;/P&gt;&lt;P&gt;The divider period is a measure - I want to divide the count per region by number of weeks per period(&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;# of Weeks)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Divider Period = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;tblNumOfWeeksInPeriod&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUMMARIZE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Dim_Date&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Dim_Date[Period]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Dim_Date[# of Weeks]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;SuMOfWeeksInPeriod&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;tblNumOfWeeksInPeriod&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Dim_Date[# of Weeks]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;Var&lt;/SPAN&gt; &lt;SPAN&gt;quotesperweek&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;MROUND&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;DIVIDE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;'Table Measures'&lt;/SPAN&gt;&lt;SPAN&gt;[Total Region]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;SuMOfWeeksInPeriod&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Return&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;quotesperweek&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I am trying to write the DAX to apply the average of the following 3 periods with the formula that I already had.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jul 2022 14:22:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Power-BI-Dax-to-Calculate-the-average-in-3-periods/m-p/2617689#M76131</guid>
      <dc:creator>ofeliajesus</dc:creator>
      <dc:date>2022-07-04T14:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Dax to Calculate the average in 3 periods</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Power-BI-Dax-to-Calculate-the-average-in-3-periods/m-p/2618426#M76183</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="407078" data-lia-user-login="ofeliajesus" class="lia-mention lia-mention-user"&gt;ofeliajesus&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please provide your pbix file without privacy information and desired output.&lt;/P&gt;
&lt;P&gt;You can upload the pbix file by Google or Onedrive.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;How to Get Your Question Answered Quickly&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Best Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Community Support Team _ Polly&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jul 2022 01:31:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Power-BI-Dax-to-Calculate-the-average-in-3-periods/m-p/2618426#M76183</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-05T01:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Dax to Calculate the average in 3 periods</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Power-BI-Dax-to-Calculate-the-average-in-3-periods/m-p/2619431#M76238</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the Table Measures, I have a formula for Quotes Per period with the DAX that I need to use to apply in the rolling 3 periods starting in 2021_04&lt;BR /&gt;The Output will be&lt;BR /&gt;2021_06 - 2021_04 + 2021_05 + 2021_06 = (17+15+9)/3&lt;BR /&gt;2021_07 - 2021_05 + 2021_06 + 2021_07 = (15+9+16)/3&lt;BR /&gt;and so on&lt;/P&gt;&lt;P&gt;I started a new formula in the field trying to join the first calculation with the rolling 3 periods the formula is in Table Measures name Measure&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/file/d/1jrdtKTxnvgrEC_FAi4IPjHg3M5j17-yE/view?usp=sharing" target="_self"&gt;DAX to calculate the average in the following 3 periods &lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jul 2022 09:40:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Power-BI-Dax-to-Calculate-the-average-in-3-periods/m-p/2619431#M76238</guid>
      <dc:creator>ofeliajesus</dc:creator>
      <dc:date>2022-07-05T09:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Dax to Calculate the average in 3 periods</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Power-BI-Dax-to-Calculate-the-average-in-3-periods/m-p/2621493#M76380</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="407078" data-lia-user-login="ofeliajesus" class="lia-mention lia-mention-user"&gt;ofeliajesus&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Create a date column first.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;dat1e = DATE(LEFT(DimDate[Period],4),RIGHT(DimDate[Period],2),1)&lt;/LI-CODE&gt;
&lt;P&gt;Then create a measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure11 = 
VAR _MONTH =
    ( EDATE ( MAX ( DimDate[dat1e] ), -3 ) )
RETURN 
   
AVERAGEX(FILTER((DimDate),DimDate[dat1e]&amp;gt;=_MONTH&amp;amp;&amp;amp;DimDate[dat1e]&amp;lt;=SELECTEDVALUE(DimDate[dat1e])),[Quotes per Period])&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Best Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Community Support Team _ Polly&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 07:09:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Power-BI-Dax-to-Calculate-the-average-in-3-periods/m-p/2621493#M76380</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-06T07:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Dax to Calculate the average in 3 periods</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Power-BI-Dax-to-Calculate-the-average-in-3-periods/m-p/2627858#M76746</link>
      <description>&lt;P&gt;I accepted this solution Thank you all&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[M 3-Period Rolling Avg] =&lt;BR /&gt;// Set the number of periods to calculate&lt;BR /&gt;// the average over.&lt;BR /&gt;var PeriodCount = 3&lt;BR /&gt;// First, get the last visible period.&lt;BR /&gt;var LastPeriodSeqno = MAX( Dim_Date[PeriodSeqno] )&lt;BR /&gt;// Then, get the periods over which to calc.&lt;BR /&gt;var PeriodsToAverageOver =&lt;BR /&gt;CALCULATETABLE(&lt;BR /&gt;DISTINCT( Dim_Date[PeriodSeqno] ),&lt;BR /&gt;// Here's the place where you use the fact that&lt;BR /&gt;// all the periods are consecutively numbered.&lt;BR /&gt;// In fact, the counting does not have to start&lt;BR /&gt;// at 1 but it has to increment by 1.&lt;BR /&gt;Dim_Date[PeriodSeqno] &amp;lt;= LastPeriodSeqno,&lt;BR /&gt;Dim_Date[PeriodSeqno] &amp;gt; LastPeriodSeqno - PeriodCount,&lt;BR /&gt;REMOVEFILTERS( Dim_Date )&lt;BR /&gt;)&lt;BR /&gt;// We need to make sure that there are indeed&lt;BR /&gt;// PeriodCount periods in the set. Otherwise,&lt;BR /&gt;// the average will not be correct. This could happen&lt;BR /&gt;// if we were too close to the beginning of the calendar.&lt;BR /&gt;var ShouldCalculate =&lt;BR /&gt;COUNTROWS( PeriodsToAverageOver ) = PeriodCount&lt;BR /&gt;var Result =&lt;BR /&gt;if( ShouldCalculate,&lt;BR /&gt;CALCULATE(&lt;BR /&gt;AVERAGEX(&lt;BR /&gt;PeriodsToAverageOver,&lt;BR /&gt;[M]&lt;BR /&gt;),&lt;BR /&gt;REMOVEFILTERS( Dim_Date )&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;return&lt;BR /&gt;Result&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2022 14:13:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Power-BI-Dax-to-Calculate-the-average-in-3-periods/m-p/2627858#M76746</guid>
      <dc:creator>ofeliajesus</dc:creator>
      <dc:date>2022-07-08T14:13:23Z</dc:date>
    </item>
  </channel>
</rss>

