<?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: Date slicer label not working on table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-slicer-label-not-working-on-table/m-p/4621844#M176902</link>
    <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the added context, for those who find this post. Since by default custom table do not affected by slicer, You can suggest any method outside of using a custom "PCB" Table like this as long as the output dynamically show the correct month year ("MMM YYYY") based on month and year slicer on Line and Clustered Column Chart visual.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Mon, 24 Mar 2025 07:45:33 GMT</pubDate>
    <dc:creator>aghnamahardhika</dc:creator>
    <dc:date>2025-03-24T07:45:33Z</dc:date>
    <item>
      <title>Date slicer label not working on table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-slicer-label-not-working-on-table/m-p/4621602#M176892</link>
      <description>&lt;P&gt;Hello, Power BI experts....,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a visual that have slicer date_2 as follow, in the example I choose "February" as month and "2025" as year.&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;I then make a measure of &lt;SPAN&gt;CurrentMonth MTD = LASTDATE(Date_2[Date])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I test the measure on card visual, it shows end of February, as expected&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, when I put the measure on a column in the table as follow, it instead show "Dec 2025" not "Feb 2025", the slicer didn't seem to work on the table&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The endgoal is to make the label shown on x-axis of a line and clustered&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;Is there any workaround to make the label can follow the slicer. This is quite frustrating since I have got all the amount on the visual correct following the slicer, but not the date label.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Mar 2025 03:11:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-slicer-label-not-working-on-table/m-p/4621602#M176892</guid>
      <dc:creator>aghnamahardhika</dc:creator>
      <dc:date>2025-03-24T03:11:18Z</dc:date>
    </item>
    <item>
      <title>Re: Date slicer label not working on table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-slicer-label-not-working-on-table/m-p/4621824#M176897</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="774268" data-lia-user-login="aghnamahardhika" class="lia-mention lia-mention-user"&gt;aghnamahardhika&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Since calculated columns are evaluated at row level they don't respond dynamically to context changes like measures do.&lt;/P&gt;&lt;P&gt;When you're trying to call a measure within a calculated column (which has a row-by-row static evaluation), this leads to issues because the measure will not know how to behave without the dynamic context it usually receives in visual.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;You can instead try using this-&lt;/P&gt;&lt;P&gt;CalculatedColumn =&lt;BR /&gt;VAR LastDate =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;MAX(Table[Date]),&lt;BR /&gt;FILTER(&lt;BR /&gt;Table,&lt;BR /&gt;Table[PreviousCurrentBudget] = "Previous" &amp;amp;&amp;amp; Table[mtdytd]="MTD")&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;LastDate&lt;/P&gt;&lt;P&gt;Hope this helps!!&lt;/P&gt;</description>
      <pubDate>Mon, 24 Mar 2025 07:17:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-slicer-label-not-working-on-table/m-p/4621824#M176897</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-24T07:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: Date slicer label not working on table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-slicer-label-not-working-on-table/m-p/4621841#M176900</link>
      <description>&lt;P&gt;Hi Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the answer. Unfortunately it does not return a desired result. If it is correct the Current MTD should return Feb 2025.&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;</description>
      <pubDate>Mon, 24 Mar 2025 07:26:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-slicer-label-not-working-on-table/m-p/4621841#M176900</guid>
      <dc:creator>aghnamahardhika</dc:creator>
      <dc:date>2025-03-24T07:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Date slicer label not working on table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-slicer-label-not-working-on-table/m-p/4621844#M176902</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the added context, for those who find this post. Since by default custom table do not affected by slicer, You can suggest any method outside of using a custom "PCB" Table like this as long as the output dynamically show the correct month year ("MMM YYYY") based on month and year slicer on Line and Clustered Column Chart visual.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 24 Mar 2025 07:45:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-slicer-label-not-working-on-table/m-p/4621844#M176902</guid>
      <dc:creator>aghnamahardhika</dc:creator>
      <dc:date>2025-03-24T07:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: Date slicer label not working on table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-slicer-label-not-working-on-table/m-p/4621874#M176908</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="774268" data-lia-user-login="aghnamahardhika" class="lia-mention lia-mention-user"&gt;aghnamahardhika&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The slicer in the report view can't be passed to the table view, so the method you're using doesn't work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can upload a case file and I can help try to implement it, or you can refer to the following method:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. create an auxiliary table for the X-axis that contains all the items that may appear in the X-axis.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. conditionally displaying "X-axis items that should be shown" in the chart with their corresponding values based on what the slicer selects, and returning blank values for the rest of the items. Because empty X-axis items will be hidden automatically.&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;Did I answer your question? If yes, 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;</description>
      <pubDate>Mon, 24 Mar 2025 07:54:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-slicer-label-not-working-on-table/m-p/4621874#M176908</guid>
      <dc:creator>xifeng_L</dc:creator>
      <dc:date>2025-03-24T07:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: Date slicer label not working on table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-slicer-label-not-working-on-table/m-p/4624145#M176999</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="774268" data-lia-user-login="aghnamahardhika" class="lia-mention lia-mention-user"&gt;aghnamahardhika&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ensure the relationships between Date_2 and other tables to confirm that filtering is correctly applied.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Vinay Pabbu&lt;/P&gt;</description>
      <pubDate>Tue, 25 Mar 2025 12:37:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-slicer-label-not-working-on-table/m-p/4624145#M176999</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-25T12:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Date slicer label not working on table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-slicer-label-not-working-on-table/m-p/4629360#M177222</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="774268" data-lia-user-login="aghnamahardhika" class="lia-mention lia-mention-user"&gt;aghnamahardhika&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for the issue worked? or Let us know if you need any further assistance?&lt;BR /&gt;If our response addressed, please mark it as Accept as solution and click Yes if you found it helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Vinay Pabbu&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 13:23:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-slicer-label-not-working-on-table/m-p/4629360#M177222</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-28T13:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: Date slicer label not working on table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-slicer-label-not-working-on-table/m-p/4634840#M177428</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="774268" data-lia-user-login="aghnamahardhika" class="lia-mention lia-mention-user"&gt;aghnamahardhika&lt;/a&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I ask if you have gotten this issue resolved?&lt;/P&gt;
&lt;P&gt;If it is solved, please mark the helpful reply or share your solution and accept it as solution, it will be helpful for other members of the community who have similar problems as yours to solve it faster.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Vinay Pabbu&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 10:37:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-slicer-label-not-working-on-table/m-p/4634840#M177428</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-04-02T10:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: Date slicer label not working on table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-slicer-label-not-working-on-table/m-p/4640951#M177694</link>
      <description>&lt;P&gt;Hi&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/774268" target="_blank"&gt;@aghnamahardhika&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for the issue worked? or Let us know if you need any further assistance?&lt;BR /&gt;If our response addressed, please mark it as Accept as solution and click Yes if you found it helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Vinay Pabbu&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2025 11:34:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-slicer-label-not-working-on-table/m-p/4640951#M177694</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-04-07T11:34:23Z</dc:date>
    </item>
  </channel>
</rss>

