<?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: Moving average of a full month in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Moving-average-of-a-full-month/m-p/1833268#M38993</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when i try to put in your exact part of the formula it gives a error ( is assume emonth =eomont because i cant find a dax with emont). First i copied your part:&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;FILTER(ALL(Kalender,Kalender[Datum]&amp;lt;=EOMONTH(TODAY(),-1)&lt;BR /&gt;but this give me a error that says ; The function Filter must have at least 2 arguments.&lt;BR /&gt;&lt;BR /&gt;So i tried to fix this with this:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;BR /&gt;&lt;P&gt;But then it gives a error at &amp;lt;=&lt;/P&gt;&lt;P&gt;and when i removed &amp;lt;= out of the formula:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;FILTER(ALL(Kalender,Kalender[Datum]),EOMONTH(TODAY(),-1)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;it says the following error: multiple table arguments are not allowed in the ALL/ ALLNOBLANK/REMOVEFILTERS function.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas how to solve this? thank you&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
    <pubDate>Mon, 10 May 2021 09:40:10 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-05-10T09:40:10Z</dc:date>
    <item>
      <title>Moving average of a full month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Moving-average-of-a-full-month/m-p/1832706#M38981</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At the moment i have a problem with my moving average.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;As you can see in the picture the moving average drops, because it count the month May. But the month May isn't over yet so it shouldn't be included in the moving average, because it gives a wrong image of the moving average. So i want to exclude the month we are in. I used the automatic formula that power bi provides;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Is there a way to exlude the current month in the moving average so it gives a right image of the moving average in three months?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 May 2021 07:06:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Moving-average-of-a-full-month/m-p/1832706#M38981</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-05-10T07:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: Moving average of a full month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Moving-average-of-a-full-month/m-p/1832918#M38987</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt; , in the last calculate, move all into a filter &lt;/P&gt;
&lt;P&gt;and try like&lt;/P&gt;
&lt;P&gt;filter(all(Kalendar]) , Kalendar[date]&amp;lt;=emonth(today(),-1)&lt;/P&gt;</description>
      <pubDate>Mon, 10 May 2021 08:00:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Moving-average-of-a-full-month/m-p/1832918#M38987</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2021-05-10T08:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: Moving average of a full month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Moving-average-of-a-full-month/m-p/1833268#M38993</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when i try to put in your exact part of the formula it gives a error ( is assume emonth =eomont because i cant find a dax with emont). First i copied your part:&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;FILTER(ALL(Kalender,Kalender[Datum]&amp;lt;=EOMONTH(TODAY(),-1)&lt;BR /&gt;but this give me a error that says ; The function Filter must have at least 2 arguments.&lt;BR /&gt;&lt;BR /&gt;So i tried to fix this with this:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;BR /&gt;&lt;P&gt;But then it gives a error at &amp;lt;=&lt;/P&gt;&lt;P&gt;and when i removed &amp;lt;= out of the formula:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;FILTER(ALL(Kalender,Kalender[Datum]),EOMONTH(TODAY(),-1)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;it says the following error: multiple table arguments are not allowed in the ALL/ ALLNOBLANK/REMOVEFILTERS function.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas how to solve this? thank you&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Mon, 10 May 2021 09:40:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Moving-average-of-a-full-month/m-p/1833268#M38993</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-05-10T09:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: Moving average of a full month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Moving-average-of-a-full-month/m-p/1834148#M39025</link>
      <description>&lt;P&gt;You've missed out the closing bracket for ALL function:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;FILTER(ALL(Kalender&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 May 2021 16:33:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Moving-average-of-a-full-month/m-p/1834148#M39025</guid>
      <dc:creator>PaulOlding</dc:creator>
      <dc:date>2021-05-10T16:33:48Z</dc:date>
    </item>
  </channel>
</rss>

