<?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: last 3 months in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/last-3-months/m-p/3910892#M152313</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="738384" data-lia-user-login="xifeng_L" class="lia-mention lia-mention-user"&gt;xifeng_L&lt;/a&gt;&amp;nbsp; it worked. Thank you so much .&lt;/P&gt;</description>
    <pubDate>Sat, 11 May 2024 15:43:55 GMT</pubDate>
    <dc:creator>kasife</dc:creator>
    <dc:date>2024-05-11T15:43:55Z</dc:date>
    <item>
      <title>last 3 months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/last-3-months/m-p/3909911#M152289</link>
      <description>&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;Guys, good afternoon!&lt;/P&gt;&lt;P&gt;I'm having difficulty creating a measurement. What I want to get is the last 3 months within the bar chart. I took a measurement, but it seems to be accumulating&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CALCULATE(
    [repasses Realizados],
    FILTER(
        ALL(d_calendario),
        d_calendario[Date] &amp;gt;= EDATE(MAX(d_calendario[Date]), -3)
            &amp;amp;&amp;amp; d_calendario[Date] &amp;lt;= MAX(d_calendario[Date])
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I want to get the last 3 months, but without using the screen filter&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;How a do it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 May 2024 22:10:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/last-3-months/m-p/3909911#M152289</guid>
      <dc:creator>kasife</dc:creator>
      <dc:date>2024-05-10T22:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: last 3 months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/last-3-months/m-p/3910231#M152291</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="459200" data-lia-user-login="kasife" class="lia-mention lia-mention-user"&gt;kasife&lt;/a&gt;&amp;nbsp;, You can try using below measure&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Last 3 Months Total = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;[repasses Realizados],&lt;BR /&gt;DATESINPERIOD(&lt;BR /&gt;d_calendario[Date],&lt;BR /&gt;TODAY(),&lt;BR /&gt;-3,&lt;BR /&gt;MONTH&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Sat, 11 May 2024 04:42:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/last-3-months/m-p/3910231#M152291</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2024-05-11T04:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: last 3 months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/last-3-months/m-p/3910348#M152294</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="625922" data-lia-user-login="bhanu_gautam" class="lia-mention lia-mention-user"&gt;bhanu_gautam&lt;/a&gt;&amp;nbsp;I tried it and didn't work.&lt;/P&gt;</description>
      <pubDate>Sat, 11 May 2024 05:57:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/last-3-months/m-p/3910348#M152294</guid>
      <dc:creator>kasife</dc:creator>
      <dc:date>2024-05-11T05:57:18Z</dc:date>
    </item>
    <item>
      <title>Re: last 3 months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/last-3-months/m-p/3910459#M152299</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="459200" data-lia-user-login="kasife" class="lia-mention lia-mention-user"&gt;kasife&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can try below measure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CALCULATE(
    [repasses Realizados],
    KEEPFILTERS(
        DATESINPERIOD(d_calendario[Date],EOMONTH(TODAY(),0),-3,MONTH)
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The key is the&amp;nbsp;&lt;STRONG&gt;KEEPFILTERS&lt;/STRONG&gt; function.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I solve your problem , pls mark my post as a solution and appreciate your Kudos !&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 11 May 2024 08:36:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/last-3-months/m-p/3910459#M152299</guid>
      <dc:creator>xifeng_L</dc:creator>
      <dc:date>2024-05-11T08:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: last 3 months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/last-3-months/m-p/3910892#M152313</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="738384" data-lia-user-login="xifeng_L" class="lia-mention lia-mention-user"&gt;xifeng_L&lt;/a&gt;&amp;nbsp; it worked. Thank you so much .&lt;/P&gt;</description>
      <pubDate>Sat, 11 May 2024 15:43:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/last-3-months/m-p/3910892#M152313</guid>
      <dc:creator>kasife</dc:creator>
      <dc:date>2024-05-11T15:43:55Z</dc:date>
    </item>
  </channel>
</rss>

