<?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: Measure to show average monthly sales in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033451#M159676</link>
    <description>&lt;P&gt;First, it doesn't look like you have marked the calendar table as a date table.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Create the measure and then all you need to do is add the measure and the year from the calendar table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Total Revenue = SUM('Revenue Combined'[Revenue]) + 0&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Here is an example of the rolling average that you can reference your original measure&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Rolling Average Current Year = 
CALCULATE(
    AVERAGEX(
        DATESINPERIOD(
            Calendar[Date],
            LASTDATE(Calendar[Date]),
            -30,
            DAY
        ),
        [Total Revenue]
    ),
    YEAR(Calendar[Date]) = YEAR(TODAY())
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. You can also reference your original measure for the YTD calculation&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;YTD Revenue = 
TOTALYTD(
    [Total Revenue],
    'Calendar'[Date]
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 10 Jul 2024 02:23:49 GMT</pubDate>
    <dc:creator>aduguid</dc:creator>
    <dc:date>2024-07-10T02:23:49Z</dc:date>
    <item>
      <title>Measure to show average monthly sales</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033318#M159660</link>
      <description>&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm kind of stuck figuring this out. I have a model I'm testing out and have created a DATE table. I have another table called Revenue Combined - see screenshot. I have a relationship created from the REVENUE COMBINED table to the DATE table. The revenue table has monthly revenue data points for years 2021-2024.&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;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. What I would like to do is create a measure for each year to show the monthly average sales for each year 2021, 2022, and 2023. I'm stuck on the syntax.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. I'd like to create a rolling average measure for 2024 since there are still several months to go, so this value would change as the remainder of the year progresses. I'm hoping I can find some more automated way with DAX syntax to automatically change the month average as each month ends and a new one begins. I'm looking for the change to occur only after the month closes...so if June 30th passes, then on July 1 the rolling average would change to include average based on 6 months.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. I'd like to also create a measure for runrate that I'm hoping could be more automated instead of me having to manually change a value each month. I'd like it to be a sum of all revenue months in 2024/# months completed*12 (i.e. assuming data in through May $2,174,204/5 months * 12 = $5,218,088). Would there be some way to have DAX syntax such that at the end of June the DAX would automatically change from 5 months to 6, thus changing the total runrate value as the year progresses?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Emma&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 00:43:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033318#M159660</guid>
      <dc:creator>emma313823</dc:creator>
      <dc:date>2024-07-10T00:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to show average monthly sales</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033451#M159676</link>
      <description>&lt;P&gt;First, it doesn't look like you have marked the calendar table as a date table.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Create the measure and then all you need to do is add the measure and the year from the calendar table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Total Revenue = SUM('Revenue Combined'[Revenue]) + 0&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Here is an example of the rolling average that you can reference your original measure&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Rolling Average Current Year = 
CALCULATE(
    AVERAGEX(
        DATESINPERIOD(
            Calendar[Date],
            LASTDATE(Calendar[Date]),
            -30,
            DAY
        ),
        [Total Revenue]
    ),
    YEAR(Calendar[Date]) = YEAR(TODAY())
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. You can also reference your original measure for the YTD calculation&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;YTD Revenue = 
TOTALYTD(
    [Total Revenue],
    'Calendar'[Date]
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 02:23:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033451#M159676</guid>
      <dc:creator>aduguid</dc:creator>
      <dc:date>2024-07-10T02:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to show average monthly sales</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033505#M159681</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much for a quick response.&lt;/P&gt;&lt;P&gt;1. worked great, but can you tell me what the +0 does in the DAX syntax?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. I had to modify the code to properly show my calendar table and it did not prompt for errors, however when I tried to drop the measure into a card to test, it shows zero. Do you think I did something wrong with this one?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Rolling Average Current Year =&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;AVERAGEX&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;DATESINPERIOD&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; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'Calendar_Dates'&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&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; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;LASTDATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Calendar_Dates'&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&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; &amp;nbsp; &amp;nbsp; -&lt;/SPAN&gt;&lt;SPAN&gt;30&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; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;DAY&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ),&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;[Total Revenue]&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;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;YEAR&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Calendar_Dates'&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;) = &lt;/SPAN&gt;&lt;SPAN&gt;YEAR&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;TODAY&lt;/SPAN&gt;&lt;SPAN&gt;())&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&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;P&gt;Emma&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 10 Jul 2024 02:47:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033505#M159681</guid>
      <dc:creator>emma313823</dc:creator>
      <dc:date>2024-07-10T02:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to show average monthly sales</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033519#M159683</link>
      <description>&lt;P&gt;&lt;SPAN&gt;1. I&lt;/SPAN&gt;&lt;SPAN&gt;n case you filter the measure and there are no records for the filter it will show 0 instead of BLANK(). I will usually do one measure for a card and another for things like a matrix.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Total Revenue = SUM('Revenue Combined'[Revenue]) // for a matrix so it only show the values that are filtered&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Total Revenue KPI = [Total Revenue] + 0 // for a kpi card so it doesn't show BLANK&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2. Give this one a try&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Rolling Average = 
    AVERAGEX(
        FILTER( ALLSELECTED('Calendar'),
            Calendar[Date] &amp;lt;= MAX(Calendar[Date]) ),
        [Total Revenue]
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 03:05:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033519#M159683</guid>
      <dc:creator>aduguid</dc:creator>
      <dc:date>2024-07-10T03:05:09Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to show average monthly sales</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033560#M159688</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hopefully i modified that correctly, but still yielding zero. After I created the measure and added to the card visual, I had no filters, as I thought this would yield current YTD.&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;Emma&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 03:08:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033560#M159688</guid>
      <dc:creator>emma313823</dc:creator>
      <dc:date>2024-07-10T03:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to show average monthly sales</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033565#M159689</link>
      <description>&lt;P&gt;can you try this one?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Rolling Average = 
    AVERAGEX(
        FILTER( ALLSELECTED('Calendar'),
            Calendar[Date] &amp;lt;= MAX(Calendar[Date]) ),
        [Total Revenue]
    )&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 10 Jul 2024 03:11:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033565#M159689</guid>
      <dc:creator>aduguid</dc:creator>
      <dc:date>2024-07-10T03:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to show average monthly sales</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033584#M159692</link>
      <description>&lt;P&gt;well i'm closer now than i was before. the card is populating data. it shows $4.63K which is off a bit for some reason.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2024 sample has 5 months (jan-may), so the average for 5 months should be $434,841 (or on the card it should show as 4.35K.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Rolling Average Current Year =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;AVERAGEX&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;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;&lt;SPAN&gt;ALLSELECTED&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Calendar_Dates'&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; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;Calendar_Dates&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;= &lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Calendar_Dates&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&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;[Total Revenue]&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;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&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, 10 Jul 2024 03:25:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033584#M159692</guid>
      <dc:creator>emma313823</dc:creator>
      <dc:date>2024-07-10T03:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to show average monthly sales</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033608#M159694</link>
      <description>&lt;P&gt;ok, let me give it one more go&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Rolling Average = 
    AVERAGEX(
        FILTER( ALLSELECTED('Calendar'),
            Calendar[Date] &amp;lt;= MAX('Revenue Combined'[Date]) ),
        [Total Revenue]
    )&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 10 Jul 2024 03:38:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033608#M159694</guid>
      <dc:creator>aduguid</dc:creator>
      <dc:date>2024-07-10T03:38:04Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to show average monthly sales</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033614#M159695</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for trying on this issue for me. You helped me get super close to what I need.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Emma&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 03:42:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033614#M159695</guid>
      <dc:creator>emma313823</dc:creator>
      <dc:date>2024-07-10T03:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to show average monthly sales</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033616#M159696</link>
      <description>&lt;P&gt;no worries, anytime &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 03:43:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033616#M159696</guid>
      <dc:creator>aduguid</dc:creator>
      <dc:date>2024-07-10T03:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to show average monthly sales</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033622#M159697</link>
      <description>&lt;P&gt;Thanks so much for your help. You got me closer than I would have on my own. I'll plug away at this mystery and hopefully find a soluiton.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;P&gt;Emma&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 03:48:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033622#M159697</guid>
      <dc:creator>emma313823</dc:creator>
      <dc:date>2024-07-10T03:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to show average monthly sales</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033648#M159702</link>
      <description>&lt;P&gt;I think I got it now.&amp;nbsp; Do you want to do an average of an average for the total? So that the total is an average of the rolling month's averages.&lt;BR /&gt;&lt;BR /&gt;Is that correct?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 04:23:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-show-average-monthly-sales/m-p/4033648#M159702</guid>
      <dc:creator>aduguid</dc:creator>
      <dc:date>2024-07-10T04:23:47Z</dc:date>
    </item>
  </channel>
</rss>

