<?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: Filtered Date in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-Date/m-p/4861296#M185430</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="327608" data-lia-user-login="JB17" class="lia-mention lia-mention-user"&gt;JB17&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Microsoft fabric community forum. Also, thanks to &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="568855" data-lia-user-login="Kedar_Pande" class="lia-mention lia-mention-user"&gt;Kedar_Pande&lt;/a&gt;, &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="897332" data-lia-user-login="Rufyda" class="lia-mention lia-mention-user"&gt;Rufyda&lt;/a&gt;, &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="824538" data-lia-user-login="rohit1991" class="lia-mention lia-mention-user"&gt;rohit1991&lt;/a&gt;, for those inputs on this thread. I reproduced the scenario, and it worked on my end. I used it as sample data and successfully implemented it.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;outcome:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I am also including .pbix file for your better understanding, please have a look into it.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Hope this clears it up. Let us know if you have any doubts regarding this. We will be happy to help.&lt;/P&gt;
&lt;P&gt;Thank you for using the Microsoft Fabric Community Forum.&lt;/P&gt;</description>
    <pubDate>Wed, 29 Oct 2025 07:02:31 GMT</pubDate>
    <dc:creator>v-kpoloju-msft</dc:creator>
    <dc:date>2025-10-29T07:02:31Z</dc:date>
    <item>
      <title>Filtered Date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-Date/m-p/4859305#M185351</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can you help me how to translate below underlined statement in DAX:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &lt;U&gt;&amp;nbsp; &amp;nbsp; Is before today and is after September 30, 2024&amp;nbsp;&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I know this can be done in filters but I wanted to avoid manual date set up everytime I will refresh the reports. Thank you so much in advance!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Oct 2025 10:41:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-Date/m-p/4859305#M185351</guid>
      <dc:creator>JB17</dc:creator>
      <dc:date>2025-10-27T10:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: Filtered Date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-Date/m-p/4859328#M185353</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="327608" data-lia-user-login="JB17" class="lia-mention lia-mention-user"&gt;JB17&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;You can do this easily with a small DAX formula instead of setting manual filters every time.&lt;/P&gt;
&lt;P&gt;Could you please try below Steps:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Create a calculated column or measure with this DAX:&lt;/LI&gt;
&lt;LI&gt;Add this to your visual-level filters and set it to FilteredDate = 1.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;FilteredDate =
VAR _today = TODAY()
VAR _cutoff = DATE(2024, 9, 30)
RETURN
IF(
    'Date'[Date] &amp;lt; _today &amp;amp;&amp;amp;
    'Date'[Date] &amp;gt; _cutoff,
    1
)&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 27 Oct 2025 13:11:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-Date/m-p/4859328#M185353</guid>
      <dc:creator>rohit1991</dc:creator>
      <dc:date>2025-10-27T13:11:05Z</dc:date>
    </item>
    <item>
      <title>Re: Filtered Date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-Date/m-p/4859526#M185360</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="327608" data-lia-user-login="JB17" class="lia-mention lia-mention-user"&gt;JB17&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;FilteredDate =&lt;BR /&gt;VAR _today = TODAY()&lt;BR /&gt;VAR _cutoff = DATE(2024, 9, 30)&lt;BR /&gt;RETURN&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; IF ( 'Date'[Date] &amp;lt; _today &amp;amp;&amp;amp; 'Date'[Date] &amp;gt; _cutoff, 1, 0 )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can learn more here:&lt;/P&gt;&lt;P&gt;TODAY function (DAX): &lt;A href="https://learn.microsoft.com/en-us/dax/today-function-dax" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/dax/today-function-dax&lt;/A&gt;&lt;/P&gt;&lt;P&gt;DATE function (DAX): &lt;A href="https://learn.microsoft.com/en-us/dax/date-function-dax" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/dax/date-function-dax&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly&lt;BR /&gt;Regards,&lt;BR /&gt;Rufyda Rahma | Microsoft MIE&lt;BR /&gt;https : &lt;A href="https://www.linkedin.com/in/rufyda-abdelhadirahma/" target="_blank" rel="noopener"&gt;https://www.linkedin.com/in/rufyda-abdelhadirahma/&lt;/A&gt;&lt;BR /&gt;Blog : &lt;A href="https://medium.com/@rufydarahma" target="_blank" rel="noopener"&gt;https://medium.com/@rufydarahma&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Oct 2025 13:28:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-Date/m-p/4859526#M185360</guid>
      <dc:creator>Rufyda</dc:creator>
      <dc:date>2025-10-27T13:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: Filtered Date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-Date/m-p/4860618#M185403</link>
      <description>&lt;P&gt;'Table'[Date] &amp;lt; TODAY() &amp;amp;&amp;amp; 'Table'[Date] &amp;gt; DATE(2024, 9, 30)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this answer helped, please click Kudos or mark as Solution.&lt;BR /&gt;-Kedar&lt;BR /&gt;LinkedIn: &lt;A href="https://www.linkedin.com/in/kedar-pande" target="_blank"&gt;https://www.linkedin.com/in/kedar-pande&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 13:04:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-Date/m-p/4860618#M185403</guid>
      <dc:creator>Kedar_Pande</dc:creator>
      <dc:date>2025-10-28T13:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: Filtered Date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-Date/m-p/4861296#M185430</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="327608" data-lia-user-login="JB17" class="lia-mention lia-mention-user"&gt;JB17&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Microsoft fabric community forum. Also, thanks to &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="568855" data-lia-user-login="Kedar_Pande" class="lia-mention lia-mention-user"&gt;Kedar_Pande&lt;/a&gt;, &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="897332" data-lia-user-login="Rufyda" class="lia-mention lia-mention-user"&gt;Rufyda&lt;/a&gt;, &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="824538" data-lia-user-login="rohit1991" class="lia-mention lia-mention-user"&gt;rohit1991&lt;/a&gt;, for those inputs on this thread. I reproduced the scenario, and it worked on my end. I used it as sample data and successfully implemented it.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;outcome:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I am also including .pbix file for your better understanding, please have a look into it.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Hope this clears it up. Let us know if you have any doubts regarding this. We will be happy to help.&lt;/P&gt;
&lt;P&gt;Thank you for using the Microsoft Fabric Community Forum.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2025 07:02:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-Date/m-p/4861296#M185430</guid>
      <dc:creator>v-kpoloju-msft</dc:creator>
      <dc:date>2025-10-29T07:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Filtered Date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-Date/m-p/4864050#M185507</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="327608" data-lia-user-login="JB17" class="lia-mention lia-mention-user"&gt;JB17&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Just checking in to see if the issue has been resolved on your end. If the earlier suggestions helped, that’s great to hear! And if you’re still facing challenges, feel free to share more details happy to assist further.&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;</description>
      <pubDate>Sat, 01 Nov 2025 14:12:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-Date/m-p/4864050#M185507</guid>
      <dc:creator>v-kpoloju-msft</dc:creator>
      <dc:date>2025-11-01T14:12:26Z</dc:date>
    </item>
    <item>
      <title>Re: Filtered Date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-Date/m-p/4865989#M185569</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="327608" data-lia-user-login="JB17" class="lia-mention lia-mention-user"&gt;JB17&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Just wanted to follow up. If the shared guidance worked for you, that’s wonderful hopefully it also helps others looking for similar answers. If there’s anything else you'd like to explore or clarify, don’t hesitate to reach out.&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;</description>
      <pubDate>Tue, 04 Nov 2025 12:19:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-Date/m-p/4865989#M185569</guid>
      <dc:creator>v-kpoloju-msft</dc:creator>
      <dc:date>2025-11-04T12:19:17Z</dc:date>
    </item>
  </channel>
</rss>

