<?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: Rolling 3 months not working properly in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4822357#M184312</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp; thanks John, it is working fine in the part of rolling 3 months.&lt;/P&gt;&lt;P&gt;one more issue now is that the each month count is giving a total count, instead of each month count &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;selected Aug month from the disconnected table slicer.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;all the 5 bars are a individual measures.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;MonthName slicer is from disconnected table&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;year slicer is from disconnected table&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;MonthYear X axis is from disconnected table&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Y axis all from measures (5 measures we have added as per chart you can see) , each measures we never used any month related calculations.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 10 Sep 2025 11:32:04 GMT</pubDate>
    <dc:creator>DineshArivu</dc:creator>
    <dc:date>2025-09-10T11:32:04Z</dc:date>
    <item>
      <title>Rolling 3 months not working properly</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4820335#M184258</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;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;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;"MMM-yyyy"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;)&amp;nbsp; &amp;nbsp; &amp;nbsp;//&lt;SPAN&gt;text type&lt;/SPAN&gt;&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;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Tried this measure but no luck:&lt;/P&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 SelectedMonth = MAX(CustomCalendar[MonthName])&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; IF(&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; SELECTEDVALUE(CustomCalendar[MonthName]) &amp;gt;= SelectedMonth - 2 &amp;amp;&amp;amp;&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; SELECTEDVALUE(CustomCalendar[MonthName]) &amp;lt;= SelectedMonth,&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; &amp;nbsp; &amp;nbsp; 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; )&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;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>Mon, 08 Sep 2025 15:46:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4820335#M184258</guid>
      <dc:creator>DineshArivu</dc:creator>
      <dc:date>2025-09-08T15:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 3 months not working properly</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4820377#M184259</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;Are x-axis and the slicer selected from the same table? Are they dimdate table or same table as your data? And also to make it clear, do you want to show the attached image if nothing selected on slicer and if selected 3 month rolling amount?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 16:21:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4820377#M184259</guid>
      <dc:creator>Selva-Salimi</dc:creator>
      <dc:date>2025-09-08T16:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 3 months not working properly</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4820390#M184261</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="785783" data-lia-user-login="Selva-Salimi" class="lia-mention lia-mention-user"&gt;Selva-Salimi&lt;/a&gt;&amp;nbsp; yes Selva ..&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Monthname &amp;amp; MonthYear is from same table.&lt;BR /&gt;&lt;SPAN&gt;do you want to show the attached image if nothing selected on slicer and if selected 3 month rolling amount? -- yes .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 16:38:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4820390#M184261</guid>
      <dc:creator>DineshArivu</dc:creator>
      <dc:date>2025-09-08T16:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 3 months not working properly</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4820741#M184277</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;The issue is that you’re comparing text MonthName values and doing a math operation on them. That won’t work and also doesn’t give you a clear “last 3 months when a month is selected, otherwise show all months” behavior.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use a real date dimension and apply a rolling-window filter only when a month is selected.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use a visual-level filter to show last 3 months only when a slicer is used&lt;/P&gt;
&lt;P&gt;Create a simple measure that returns 1 for all rows when no slicer is active, and returns 1 only for the last 3 months when a slicer is active. Then filter the visual to show items where this measure = 1.&lt;BR /&gt;This keeps all months visible by default, and when you pick any month, the visual shows only the last 3 months.&lt;BR /&gt;DAX (ShowLast3IfSelected) VAR HasMonthSelected = ISFILTERED('Calendar'[MonthName]) VAR EndDate = MAX('Calendar'[Date]) VAR StartDate = EOMONTH(EndDate, -2) + 1 RETURN IF( HasMonthSelected, IF('Calendar'[Date] &amp;gt;= StartDate &amp;amp;&amp;amp; 'Calendar'[Date] &amp;lt;= EndDate, 1, 0), 1 )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What to do:&lt;/P&gt;
&lt;P&gt;Add this as a new measure ShowLast3IfSelected.&lt;BR /&gt;In the visual (the clustered column chart), add ShowLast3IfSelected to the Visual level Filters and set it to show items when the value is 1.&lt;BR /&gt;Keep your axis as MonthYear (text) and slicer on MonthName (text).&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Notes:&lt;/P&gt;
&lt;P&gt;This approach relies on a proper Date table (Calendar) with Date, MonthName, MonthYear, etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Please mark this post as solution if it helps you. Appreciate Kudos.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Sep 2025 05:19:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4820741#M184277</guid>
      <dc:creator>FarhanJeelani</dc:creator>
      <dc:date>2025-09-09T05:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 3 months not working properly</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4821167#M184281</link>
      <description>&lt;P&gt;You could use the technique described in&amp;nbsp;&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;/P&gt;</description>
      <pubDate>Tue, 09 Sep 2025 10:05:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4821167#M184281</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2025-09-09T10:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 3 months not working properly</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4821241#M184282</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp; hey john,&lt;/P&gt;&lt;P&gt;we are using data everything from a measure (Y axis), not from fact table.&lt;BR /&gt;Calendar table (Date table) is not visible when trying to apply IF condition in the dax.&lt;BR /&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="833383" data-lia-user-login="FarhanJeelani" class="lia-mention lia-mention-user"&gt;FarhanJeelani&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="785783" data-lia-user-login="Selva-Salimi" class="lia-mention lia-mention-user"&gt;Selva-Salimi&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Last3Months =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;HasMonthSelected&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;ISFILTERED&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'CustomCalendar'&lt;/SPAN&gt;&lt;SPAN&gt;[MonthName]&lt;/SPAN&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;EndDate&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'CustomCalendar'&lt;/SPAN&gt;&lt;SPAN&gt;[MonthName]&lt;/SPAN&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;StartDate&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;EOMONTH&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;EndDate&lt;/SPAN&gt;&lt;SPAN&gt;, -&lt;/SPAN&gt;&lt;SPAN&gt;2&lt;/SPAN&gt;&lt;SPAN&gt;) + &lt;/SPAN&gt;&lt;SPAN&gt;1&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;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;HasMonthSelected&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;( ..&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 09 Sep 2025 10:45:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4821241#M184282</guid>
      <dc:creator>DineshArivu</dc:creator>
      <dc:date>2025-09-09T10:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 3 months not working properly</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4821255#M184283</link>
      <description>&lt;P&gt;You can't work with the MAX of a month name, you could try&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Last 3 months =
VAR HasMonthSelected =
    ISFILTERED ( 'CustomCalendar'[MonthName] )
VAR EndDate =
    CALCULATE ( MAX ( 'CustomCalendar'[Date] ), ALLSELECTED ( 'CustomCalendar' ) )
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;/LI-CODE&gt;</description>
      <pubDate>Tue, 09 Sep 2025 10:58:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4821255#M184283</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2025-09-09T10:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 3 months not working properly</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4821272#M184284</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp; thanks john, i have applied this dax measure in visual filter and set 1 ,&lt;BR /&gt;but nothing reflects when select any month from the slicer.&lt;BR /&gt;still it is displaying as it is normally - selected month data only , not last 3 months.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Sep 2025 11:08:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4821272#M184284</guid>
      <dc:creator>DineshArivu</dc:creator>
      <dc:date>2025-09-09T11:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 3 months not working properly</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4821281#M184285</link>
      <description>&lt;P&gt;You would need separate date tables for the visual and for the slicer. You can use the method described in the article I posted, or you could just have a disconnected copy of your date table which you use on the slicer, using the current date table in the visuals, and change the code to&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&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;/LI-CODE&gt;</description>
      <pubDate>Tue, 09 Sep 2025 11:15:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4821281#M184285</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2025-09-09T11:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 3 months not working properly</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4822206#M184307</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;Thanks for reaching out to the Microsoft fabric community forum.&lt;/P&gt;
&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="833383" data-lia-user-login="FarhanJeelani" class="lia-mention lia-mention-user"&gt;FarhanJeelani&lt;/a&gt;&amp;nbsp; ,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="785783" data-lia-user-login="Selva-Salimi" class="lia-mention lia-mention-user"&gt;Selva-Salimi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thanks for your prompt response&lt;/P&gt;
&lt;P&gt;&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;I wanted to follow up and confirm whether you’ve had the opportunity to review the information&amp;nbsp; provided by&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="833383" data-lia-user-login="FarhanJeelani" class="lia-mention lia-mention-user"&gt;FarhanJeelani&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="785783" data-lia-user-login="Selva-Salimi" class="lia-mention lia-mention-user"&gt;Selva-Salimi&lt;/a&gt;&amp;nbsp; If you have any questions or need further clarification, please don’t hesitate to reach out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We appreciate your engagement and thank you for being an active part of the community.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Best regards,&lt;BR /&gt;Lakshmi&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 09:16:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4822206#M184307</guid>
      <dc:creator>v-lgarikapat</dc:creator>
      <dc:date>2025-09-10T09:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 3 months not working properly</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4822357#M184312</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp; thanks John, it is working fine in the part of rolling 3 months.&lt;/P&gt;&lt;P&gt;one more issue now is that the each month count is giving a total count, instead of each month count &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;selected Aug month from the disconnected table slicer.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;all the 5 bars are a individual measures.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;MonthName slicer is from disconnected table&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;year slicer is from disconnected table&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;MonthYear X axis is from disconnected table&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Y axis all from measures (5 measures we have added as per chart you can see) , each measures we never used any month related calculations.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 11:32:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4822357#M184312</guid>
      <dc:creator>DineshArivu</dc:creator>
      <dc:date>2025-09-10T11:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 3 months not working properly</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4822414#M184317</link>
      <description>&lt;P&gt;The X-axis should come from the date table which is connected to your model, not from the disconnected one.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 12:36:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4822414#M184317</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2025-09-10T12:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 3 months not working properly</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4822554#M184319</link>
      <description>&lt;P&gt;Works now , thanks&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;and all &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 14:16:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-3-months-not-working-properly/m-p/4822554#M184319</guid>
      <dc:creator>DineshArivu</dc:creator>
      <dc:date>2025-09-10T14:16:02Z</dc:date>
    </item>
  </channel>
</rss>

