<?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: Need to create DAX for last 3 month visible in clustered column chart in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-DAX-for-last-3-month-visible-in-clustered-column/m-p/4822195#M184306</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1333848" data-lia-user-login="DineshArivu" class="lia-mention lia-mention-user"&gt;DineshArivu&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Have you had a chance to review the solution we shared by &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;? If the issue persists, feel free to reply so we can help further.&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;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 10 Sep 2025 09:07:50 GMT</pubDate>
    <dc:creator>v-saisrao-msft</dc:creator>
    <dc:date>2025-09-10T09:07:50Z</dc:date>
    <item>
      <title>Need to create DAX for last 3 month visible in clustered column chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-DAX-for-last-3-month-visible-in-clustered-column/m-p/4821462#M184295</link>
      <description>&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I want to create a dax to display the last 3 months when we select any month from the slicer. if not selected then it will display all month data in clustered column chart.&lt;/SPAN&gt;&lt;BR /&gt;Monthname is a slicer (&lt;SPAN&gt;MonthName =&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;FORMAT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"MMMM"&lt;/SPAN&gt;&lt;SPAN&gt;))&amp;nbsp; &amp;nbsp;//text type&lt;BR /&gt;Monthyear is a X axis in visual (&lt;/SPAN&gt;&lt;SPAN&gt;MonthYear =&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;FORMAT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"MMM-yyyy"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;)&amp;nbsp; &amp;nbsp; &amp;nbsp;//text type&lt;/SPAN&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;&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;Tried this measure but no luck:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;EM&gt;Last3Months =&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;EM&gt;VAR HasMonthSelected =&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; ISFILTERED ( 'CustomCalendar'[MonthName] )&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;EM&gt;VAR EndDate =&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; CALCULATE ( MAX ( 'CustomCalendar'[Date] ), ALLSELECTED ( 'CustomCalendar' ) )&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;EM&gt;VAR SelectedDate =&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; MAX ( 'CustomCalendar'[Date] )&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;EM&gt;VAR Result =&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; SWITCH (&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TRUE (),&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; HasMonthSelected&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp; SelectedDate IN DATESINPERIOD ( 'CustomCalendar'[Date], EndDate, -3, MONTH ), 1,&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; HasMonthSelected, 0,&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; )&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;EM&gt;RETURN&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; Result&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;Please help me on this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;DK&lt;/P&gt;</description>
      <pubDate>Tue, 09 Sep 2025 13:22:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-DAX-for-last-3-month-visible-in-clustered-column/m-p/4821462#M184295</guid>
      <dc:creator>DineshArivu</dc:creator>
      <dc:date>2025-09-09T13:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create DAX for last 3 month visible in clustered column chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-DAX-for-last-3-month-visible-in-clustered-column/m-p/4821848#M184300</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.&lt;/P&gt;
&lt;P&gt;Please check the below picture and the attached pbix file.&lt;/P&gt;
&lt;P&gt;One of ways is to create calculation group, and then put the calculation item into the visual level filter pane.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/transform-model/calculation-groups?wt.mc_id=DP-MVP-5004989" target="_blank"&gt;Create calculation groups in Power BI - Power BI | Microsoft Learn&lt;/A&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;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;_cg_filter = 
VAR _slicerselect =
    MAX ( 'calendar slicer'[Month-Year sort] )
VAR _t =
    FILTER (
        ALL ( 'calendar'[Month-Year], 'calendar'[Month-Year sort] ),
        'calendar'[Month-Year sort] &amp;lt;= _slicerselect
    )
VAR _window =
    WINDOW ( 1, ABS, 3, ABS, _t, ORDERBY ( 'calendar'[Month-Year sort], DESC ) )
RETURN
    SWITCH (
        TRUE (),
        NOT ISFILTERED ( 'calendar slicer'[Month name] ), SELECTEDMEASURE (),
        ISFILTERED ( 'calendar slicer'[Month name] ), CALCULATE ( SELECTEDMEASURE (), KEEPFILTERS ( _window ) ),
        SELECTEDMEASURE ()
    )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 02:52:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-DAX-for-last-3-month-visible-in-clustered-column/m-p/4821848#M184300</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2025-09-10T02:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create DAX for last 3 month visible in clustered column chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-DAX-for-last-3-month-visible-in-clustered-column/m-p/4822195#M184306</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1333848" data-lia-user-login="DineshArivu" class="lia-mention lia-mention-user"&gt;DineshArivu&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Have you had a chance to review the solution we shared by &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;? If the issue persists, feel free to reply so we can help further.&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;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 09:07:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-DAX-for-last-3-month-visible-in-clustered-column/m-p/4822195#M184306</guid>
      <dc:creator>v-saisrao-msft</dc:creator>
      <dc:date>2025-09-10T09:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create DAX for last 3 month visible in clustered column chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-DAX-for-last-3-month-visible-in-clustered-column/m-p/4822381#M184314</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp; thanks for your solution.&lt;BR /&gt;few points from my side:&lt;BR /&gt;1. We are not using any columns directly like sales,values for the visual X axis (all 5 measures used)&lt;/P&gt;&lt;P&gt;2. as we are using measures, there is no relationship created.&lt;BR /&gt;3. I cannot able to apply your measure into visual filter , like the filtering type is different (is,not equals,is blank,no blank).&lt;BR /&gt;&lt;BR /&gt;If i use the same dax as calculated column, then it prompts error&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 12:07:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-DAX-for-last-3-month-visible-in-clustered-column/m-p/4822381#M184314</guid>
      <dc:creator>DineshArivu</dc:creator>
      <dc:date>2025-09-10T12:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create DAX for last 3 month visible in clustered column chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-DAX-for-last-3-month-visible-in-clustered-column/m-p/4823002#M184322</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Please share your sample pbix file's link, and then I can try to have a look into it.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Sep 2025 02:20:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-DAX-for-last-3-month-visible-in-clustered-column/m-p/4823002#M184322</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2025-09-11T02:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create DAX for last 3 month visible in clustered column chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-DAX-for-last-3-month-visible-in-clustered-column/m-p/4823345#M184331</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1333848" data-lia-user-login="DineshArivu" class="lia-mention lia-mention-user"&gt;DineshArivu&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please provide sample pbix file that covers your issue or question completely&lt;SPAN&gt;, in a usable&lt;SPAN&gt; format (not as a screenshot).&lt;BR /&gt;&lt;SPAN&gt;Do not include sensitive information. Do not include anything that is unrelated to the issue or question.&lt;BR /&gt;&lt;SPAN&gt;Please show the &lt;STRONG&gt;expected outcome based on the sample data you provided.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Need help uploading data?&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A class="" title="https://community.fabric.microsoft.com/t5/community-blog/how-to-provide-sample-data-in-the-power-bi-forum/ba-p/963216" href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank" rel="noreferrer noopener" aria-label="Link https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-..."&gt;https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...&lt;BR /&gt;&lt;SPAN&gt;Want faster answers? &lt;/SPAN&gt;&lt;/A&gt;&lt;A class="" title="https://community.fabric.microsoft.com/t5/desktop/how-to-get-your-question-answered-quickly/m-p/1447..." href="https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447..." target="_blank" rel="noreferrer noopener" aria-label="Link https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447..."&gt;https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Sep 2025 09:21:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-DAX-for-last-3-month-visible-in-clustered-column/m-p/4823345#M184331</guid>
      <dc:creator>v-saisrao-msft</dc:creator>
      <dc:date>2025-09-11T09:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create DAX for last 3 month visible in clustered column chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-DAX-for-last-3-month-visible-in-clustered-column/m-p/4825731#M184398</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1333848" data-lia-user-login="DineshArivu" class="lia-mention lia-mention-user"&gt;DineshArivu&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;If the issue persists, please provide the sample pbix file so we can assist in resolving it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Sep 2025 04:18:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-DAX-for-last-3-month-visible-in-clustered-column/m-p/4825731#M184398</guid>
      <dc:creator>v-saisrao-msft</dc:creator>
      <dc:date>2025-09-15T04:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create DAX for last 3 month visible in clustered column chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-DAX-for-last-3-month-visible-in-clustered-column/m-p/4827143#M184430</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1333848" data-lia-user-login="DineshArivu" class="lia-mention lia-mention-user"&gt;DineshArivu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you can create a shadow date table&amp;nbsp; which will be used in visualization&amp;nbsp; and filter the original date table.&lt;/P&gt;&lt;P&gt;Step by Step process is mentioned in this article by SQL BI&lt;BR /&gt;&lt;A href="https://www.sqlbi.com/articles/show-previous-6-months-of-data-from-single-slicer-selection/" target="_self"&gt;https://www.sqlbi.com/articles/show-previous-6-months-of-data-from-single-slicer-selection/&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;this shows previous 6 months based on slicer selection.they have used -6 in the calculations.&lt;/P&gt;&lt;P&gt;you can use -3 for previous 3 months.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please marks the answer as resolved once confirmed.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 06:50:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-DAX-for-last-3-month-visible-in-clustered-column/m-p/4827143#M184430</guid>
      <dc:creator>Praful_Potphode</dc:creator>
      <dc:date>2025-09-16T06:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create DAX for last 3 month visible in clustered column chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-DAX-for-last-3-month-visible-in-clustered-column/m-p/4827229#M184432</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&lt;/P&gt;&lt;P&gt;below dax is works for me ..&lt;BR /&gt;thanks&lt;/P&gt;&lt;PRE&gt;Last 3 months =
VAR HasMonthSelected =
    ISFILTERED ( 'CustomCalendar for slicer'[MonthName] )
VAR EndDate =
    MAX ( 'CustomCalendar for slicer'[Date] )
VAR SelectedDate =
    MAX ( 'CustomCalendar'[Date] )
VAR Result =
    SWITCH (
        TRUE (),
        HasMonthSelected
            &amp;amp;&amp;amp; SelectedDate IN DATESINPERIOD ( 'CustomCalendar'[Date], EndDate, -3, MONTH ), 1,
        HasMonthSelected, 0,
        1
    )
RETURN
    Result&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 08:14:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-DAX-for-last-3-month-visible-in-clustered-column/m-p/4827229#M184432</guid>
      <dc:creator>DineshArivu</dc:creator>
      <dc:date>2025-09-16T08:14:51Z</dc:date>
    </item>
  </channel>
</rss>

