<?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: Filtering based on date range. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-based-on-date-range/m-p/1467383#M27784</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="198866" data-lia-user-login="bob57" class="lia-mention lia-mention-user"&gt;bob57&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Glad it worked, you can accept more than one solution.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;________________________&lt;/P&gt;&lt;P&gt;If my answer was helpful, please consider &lt;STRONG&gt;&lt;I&gt;Accept it as the solution&lt;/I&gt;&lt;/STRONG&gt;&lt;I&gt; to help the other members find it&lt;/I&gt;&lt;/P&gt;&lt;P&gt;Click on the &lt;STRONG&gt;Thumbs-Up icon &lt;/STRONG&gt;if you like this reply &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/channel/UCKwBEguA8IlBubIobaOormg?sub_confirmation=1" target="_blank"&gt;&lt;FONT color="blue"&gt;YouTube&lt;/FONT&gt;&lt;/A&gt;&amp;nbsp; &lt;A href="https://linkedin.com/in/fowmy" target="_blank"&gt;&lt;FONT color="blue"&gt;LinkedIn&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 31 Oct 2020 19:39:19 GMT</pubDate>
    <dc:creator>Fowmy</dc:creator>
    <dc:date>2020-10-31T19:39:19Z</dc:date>
    <item>
      <title>Filtering based on date range.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-based-on-date-range/m-p/1467353#M27778</link>
      <description>&lt;P&gt;Good day!&lt;/P&gt;&lt;P&gt;This seems pretty simple, but the solution escapes me. As currently designed, I can click on a project in the 'Top Level Project View' table and all tasks for that project will appear in the 'Task Starts foe Next 14 Days' table. I only want to see tasks that will start over the next 14 days. Here is a ink to the .pbix, if helpful:&amp;nbsp;&lt;A href="https://1drv.ms/u/s!Agkx6hQs0NiX1jVhOSd6FFATlSP3?e=SLnAJt" target="_blank"&gt;https://1drv.ms/u/s!Agkx6hQs0NiX1jVhOSd6FFATlSP3?e=SLnAJt&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Thank you for your time and effort.&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Data Model: 'Projects'[Id] ----&amp;gt; 'Project Tasks'[ProjectId]&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 31 Oct 2020 18:23:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-based-on-date-range/m-p/1467353#M27778</guid>
      <dc:creator>bob57</dc:creator>
      <dc:date>2020-10-31T18:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering based on date range.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-based-on-date-range/m-p/1467368#M27779</link>
      <description>&lt;P&gt;Highlight your project tasks visual and, on the Filter Panel for this visual, select Relative Date filter and enter next 14 days.&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;Regards,&lt;/P&gt;
&lt;P&gt;Pat&lt;/P&gt;</description>
      <pubDate>Sat, 31 Oct 2020 19:18:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-based-on-date-range/m-p/1467368#M27779</guid>
      <dc:creator>mahoneypat</dc:creator>
      <dc:date>2020-10-31T19:18:48Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering based on date range.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-based-on-date-range/m-p/1467376#M27781</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="198866" data-lia-user-login="bob57" class="lia-mention lia-mention-user"&gt;bob57&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Create a measure and assign it to the visual as 1&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;You can download the file:&amp;nbsp;&lt;A href="https://1drv.ms/u/s!AmoScH5srsIYgYlbUs1m9ML2uplN_w?e=oci5u0" target="_blank" rel="nofollow noopener noreferrer"&gt;HERE&lt;/A&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Next14Days = 

IF( SELECTEDVALUE('Project Tasks'[StartDate]) &amp;gt; (TODAY() + 14) , 0 , 1 )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;________________________&lt;/P&gt;&lt;P&gt;If my answer was helpful, please consider &lt;STRONG&gt;&lt;I&gt;Accept it as the solution&lt;/I&gt;&lt;/STRONG&gt;&lt;I&gt; to help the other members find it&lt;/I&gt;&lt;/P&gt;&lt;P&gt;Click on the &lt;STRONG&gt;Thumbs-Up icon &lt;/STRONG&gt;if you like this reply &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/channel/UCKwBEguA8IlBubIobaOormg?sub_confirmation=1" target="_blank"&gt;&lt;FONT color="blue"&gt;YouTube&lt;/FONT&gt;&lt;/A&gt;&amp;nbsp; &lt;A href="https://linkedin.com/in/fowmy" target="_blank"&gt;&lt;FONT color="blue"&gt;LinkedIn&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 31 Oct 2020 19:26:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-based-on-date-range/m-p/1467376#M27781</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2020-10-31T19:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering based on date range.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-based-on-date-range/m-p/1467381#M27782</link>
      <description>&lt;P&gt;A perfect solution! Thank you so much!&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;</description>
      <pubDate>Sat, 31 Oct 2020 19:35:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-based-on-date-range/m-p/1467381#M27782</guid>
      <dc:creator>bob57</dc:creator>
      <dc:date>2020-10-31T19:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering based on date range.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-based-on-date-range/m-p/1467382#M27783</link>
      <description>&lt;P&gt;A fine alternate solution. Thank you very much!&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;</description>
      <pubDate>Sat, 31 Oct 2020 19:36:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-based-on-date-range/m-p/1467382#M27783</guid>
      <dc:creator>bob57</dc:creator>
      <dc:date>2020-10-31T19:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering based on date range.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-based-on-date-range/m-p/1467383#M27784</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="198866" data-lia-user-login="bob57" class="lia-mention lia-mention-user"&gt;bob57&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Glad it worked, you can accept more than one solution.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;________________________&lt;/P&gt;&lt;P&gt;If my answer was helpful, please consider &lt;STRONG&gt;&lt;I&gt;Accept it as the solution&lt;/I&gt;&lt;/STRONG&gt;&lt;I&gt; to help the other members find it&lt;/I&gt;&lt;/P&gt;&lt;P&gt;Click on the &lt;STRONG&gt;Thumbs-Up icon &lt;/STRONG&gt;if you like this reply &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/channel/UCKwBEguA8IlBubIobaOormg?sub_confirmation=1" target="_blank"&gt;&lt;FONT color="blue"&gt;YouTube&lt;/FONT&gt;&lt;/A&gt;&amp;nbsp; &lt;A href="https://linkedin.com/in/fowmy" target="_blank"&gt;&lt;FONT color="blue"&gt;LinkedIn&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 31 Oct 2020 19:39:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-based-on-date-range/m-p/1467383#M27784</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2020-10-31T19:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering based on date range.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-based-on-date-range/m-p/1467384#M27785</link>
      <description>&lt;P&gt;Done, thank you!&lt;/P&gt;</description>
      <pubDate>Sat, 31 Oct 2020 19:54:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-based-on-date-range/m-p/1467384#M27785</guid>
      <dc:creator>bob57</dc:creator>
      <dc:date>2020-10-31T19:54:39Z</dc:date>
    </item>
  </channel>
</rss>

