<?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 Help with Date/Time Intelligence in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Date-Time-Intelligence/m-p/4345201#M172546</link>
    <description>&lt;P&gt;I need to know if a process was active within a date period, selected by a Timeline slicer.&lt;BR /&gt;I have a 4 step process.&amp;nbsp; Each row represents the process, and I have one column for each step completion date.&lt;/P&gt;&lt;P&gt;Data Model consists of Transaction table and Date table (currently unjoined):&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I want to select (say) Q1/2024 and filter all the records in the table that were active in that period.&amp;nbsp; Note: Q1 is 01/01/2024 - 31/3/2024.&lt;BR /&gt;If the process was started prior to Q1/2024, but not finished, then it is still active.&lt;/P&gt;&lt;P&gt;Pivot Table is as shown with the desired result.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Could someone guide me to the logic of solving this problem.&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&amp;nbsp; I dont even know how to start thinking about it.&lt;/P&gt;</description>
    <pubDate>Sat, 28 Dec 2024 15:38:09 GMT</pubDate>
    <dc:creator>Mikeincairns</dc:creator>
    <dc:date>2024-12-28T15:38:09Z</dc:date>
    <item>
      <title>Help with Date/Time Intelligence</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Date-Time-Intelligence/m-p/4345201#M172546</link>
      <description>&lt;P&gt;I need to know if a process was active within a date period, selected by a Timeline slicer.&lt;BR /&gt;I have a 4 step process.&amp;nbsp; Each row represents the process, and I have one column for each step completion date.&lt;/P&gt;&lt;P&gt;Data Model consists of Transaction table and Date table (currently unjoined):&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I want to select (say) Q1/2024 and filter all the records in the table that were active in that period.&amp;nbsp; Note: Q1 is 01/01/2024 - 31/3/2024.&lt;BR /&gt;If the process was started prior to Q1/2024, but not finished, then it is still active.&lt;/P&gt;&lt;P&gt;Pivot Table is as shown with the desired result.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Could someone guide me to the logic of solving this problem.&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&amp;nbsp; I dont even know how to start thinking about it.&lt;/P&gt;</description>
      <pubDate>Sat, 28 Dec 2024 15:38:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Date-Time-Intelligence/m-p/4345201#M172546</guid>
      <dc:creator>Mikeincairns</dc:creator>
      <dc:date>2024-12-28T15:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Date/Time Intelligence</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Date-Time-Intelligence/m-p/4345205#M172547</link>
      <description>&lt;P&gt;Please provide sample data that covers your issue or question &lt;STRONG&gt;completely&lt;/STRONG&gt;, in a &lt;STRONG&gt;usable&lt;/STRONG&gt; format (not as a screenshot).&lt;BR /&gt;Do not include sensitive information. Do not include anything that is unrelated to the issue or question. &lt;BR /&gt;Please show the expected outcome based on the sample data you provided. &lt;BR /&gt;&lt;BR /&gt;Need help uploading data? &lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216&lt;/A&gt; &lt;BR /&gt;Want faster answers? &lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Dec 2024 15:38:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Date-Time-Intelligence/m-p/4345205#M172547</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-12-28T15:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Date/Time Intelligence</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Date-Time-Intelligence/m-p/4345260#M172549</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="45567" data-lia-user-login="Mikeincairns" class="lia-mention lia-mention-user"&gt;Mikeincairns&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try with this measure:&lt;BR /&gt;Logic: if the process ended before the "min date selected at the slicer" or the process started after the "max date selected at the slicer" then it returns N otherwise Y.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Steps =
VAR _MaxSelected = MAXX ( ALLSELECTED ( Calendar), Calendar[Date] )
VAR _MinSelected = MINX ( ALLSELECTED ( Calendar), Calendar[Date] )
RETURN
    IF ( tblExtract[Step 4] &amp;lt; _MinSelected || tblExtract[Step 1] &amp;gt; _MaxSelected,
        "N", "Y")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;I hope this helps, if so please accept as a solution. Kudos are welcome&lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;.&lt;/P&gt;</description>
      <pubDate>Sat, 28 Dec 2024 19:21:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Date-Time-Intelligence/m-p/4345260#M172549</guid>
      <dc:creator>pcoley</dc:creator>
      <dc:date>2024-12-28T19:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Date/Time Intelligence</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Date-Time-Intelligence/m-p/4345335#M172556</link>
      <description>&lt;P&gt;Thanks for getting me in the right direction.&lt;BR /&gt;I am finding it super hard to describe what I want, so dont want to waste anyones time.&lt;BR /&gt;I will mark it as solved.&lt;BR /&gt;Appreciate your reply veru much,&amp;nbsp; Thankyou.&lt;/P&gt;</description>
      <pubDate>Sun, 29 Dec 2024 04:49:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Date-Time-Intelligence/m-p/4345335#M172556</guid>
      <dc:creator>Mikeincairns</dc:creator>
      <dc:date>2024-12-29T04:49:33Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Date/Time Intelligence</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Date-Time-Intelligence/m-p/4345337#M172557</link>
      <description>&lt;P&gt;I am stuggling to explain what I want.&amp;nbsp;&lt;/P&gt;&lt;P&gt;- It is confidential data so will not be uploading.&lt;BR /&gt;- Pretty sure I have provided the sample data (albeit in a screenshot).&lt;BR /&gt;- I have taken out sensitive and unrelated data.&lt;BR /&gt;- I have a sample of the expected outcome.&lt;BR /&gt;Not sure what else to do.&amp;nbsp; But I appreciate your feedback.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Dec 2024 04:53:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Date-Time-Intelligence/m-p/4345337#M172557</guid>
      <dc:creator>Mikeincairns</dc:creator>
      <dc:date>2024-12-29T04:53:35Z</dc:date>
    </item>
  </channel>
</rss>

