<?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: Enabling to filter in time current and past status in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Enabling-to-filter-in-time-current-and-past-status/m-p/2903179#M94617</link>
    <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for your prompt and detailed solution on this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Somehow I can't replicate it. I do have a date table in place but it all shows open for me.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I see though an issue in the suggested approcah. If you look at the example you sent, everything that is blank and after the seleted filtered date shows "filled" even if I would expect it to be "open" with your formula. Any clue on this?&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;P&gt;SvenDu&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 14 Nov 2022 09:03:01 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-11-14T09:03:01Z</dc:date>
    <item>
      <title>Enabling to filter in time current and past status</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Enabling-to-filter-in-time-current-and-past-status/m-p/2885406#M93510</link>
      <description>&lt;LI-SPOILER&gt;&lt;P&gt;Dear Community,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to be able to show data based on their current or previous status depending on how you filter them in time.&lt;/P&gt;&lt;P&gt;To make it more concrete, the data below represent recruiting positions that are open and, at a certain "closed date" are moving to the status "filled".&lt;/P&gt;&lt;P&gt;I would like to be able to make a position appear as "open" if filtering to a date prior to its "closed date" even if it now "Filled"&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thank you very much in advance!!&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;&lt;img /&gt;&lt;/P&gt;&lt;/LI-SPOILER&gt;&lt;P&gt;Example at the bottom on the list, "Closed date" is Oct 13th 2022, how can I show it as „Open“ if filtering for instance September 2022?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2022 11:00:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Enabling-to-filter-in-time-current-and-past-status/m-p/2885406#M93510</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-04T11:00:32Z</dc:date>
    </item>
    <item>
      <title>Re: Enabling to filter in time current and past status</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Enabling-to-filter-in-time-current-and-past-status/m-p/2888612#M93704</link>
      <description>&lt;P&gt;Not getting any replies since Friday? Have a look:&amp;nbsp;&lt;A href="https://community.powerbi.com/t5/DAX-Commands-and-Tips/How-to-Get-Your-Question-Answered-Quickly/td-p/1626726/jump-to/first-unread-message" target="_blank"&gt;How to Get Your Question Answered Quickly (powerbi.com)&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Nov 2022 08:30:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Enabling-to-filter-in-time-current-and-past-status/m-p/2888612#M93704</guid>
      <dc:creator>daXtreme</dc:creator>
      <dc:date>2022-11-07T08:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: Enabling to filter in time current and past status</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Enabling-to-filter-in-time-current-and-past-status/m-p/2888647#M93709</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think "Date Filter" table should be an unrelated date table with your data table.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Dynamic Status =
VAR _MAXDATE =
    MAX ( 'Date Filter'[Date] )
RETURN
    IF (
        MAX ( 'Table'[Date Created] ) &amp;lt;= _MAXDATE,
        IF (
            MAX ( 'Table'[Closed Date] ) = BLANK ()
                || MAX ( 'Table'[Closed Date] ) &amp;gt;= _MAXDATE,
            "Open",
            "Filled"
        ),
        "Filled"
    )&lt;/LI-CODE&gt;
&lt;P&gt;Result is as below.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Rico Zhou&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Nov 2022 08:40:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Enabling-to-filter-in-time-current-and-past-status/m-p/2888647#M93709</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-07T08:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Enabling to filter in time current and past status</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Enabling-to-filter-in-time-current-and-past-status/m-p/2903179#M94617</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for your prompt and detailed solution on this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Somehow I can't replicate it. I do have a date table in place but it all shows open for me.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I see though an issue in the suggested approcah. If you look at the example you sent, everything that is blank and after the seleted filtered date shows "filled" even if I would expect it to be "open" with your formula. Any clue on this?&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;P&gt;SvenDu&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Nov 2022 09:03:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Enabling-to-filter-in-time-current-and-past-status/m-p/2903179#M94617</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-14T09:03:01Z</dc:date>
    </item>
  </channel>
</rss>

