<?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: Need End Time from next entry's Created Time in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-End-Time-from-next-entry-s-Created-Time/m-p/2256897#M54485</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="315278" data-lia-user-login="VahidDM" class="lia-mention lia-mention-user"&gt;VahidDM&lt;/a&gt;&amp;nbsp;thanks for the response! I just got back to the office and tried this, and I got this error for Line 8:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A single value for column 'Machine' in table 'Table' cannot be determined.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions on what I'm still doing wrong?&lt;/P&gt;</description>
    <pubDate>Mon, 27 Dec 2021 13:54:42 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-12-27T13:54:42Z</dc:date>
    <item>
      <title>Need End Time from next entry's Created Time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-End-Time-from-next-entry-s-Created-Time/m-p/2242743#M53743</link>
      <description>&lt;P&gt;I have a table with new entries every time the status of a machine is updated. A Created Time is automatically added when a new entry is created. What I would like to make is a column for End Time. It should be the Created Time for the next entry for that particular machine. Any help would be greatly appreciated!&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>Thu, 16 Dec 2021 15:28:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-End-Time-from-next-entry-s-Created-Time/m-p/2242743#M53743</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-12-16T15:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: Need End Time from next entry's Created Time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-End-Time-from-next-entry-s-Created-Time/m-p/2242754#M53744</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;It should be the Created Time for the next entry for that particular machine - what is the logic for calcuating that&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Dec 2021 15:31:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-End-Time-from-next-entry-s-Created-Time/m-p/2242754#M53744</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2021-12-16T15:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: Need End Time from next entry's Created Time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-End-Time-from-next-entry-s-Created-Time/m-p/2242876#M53752</link>
      <description>&lt;P&gt;It's from a SharePoint list. So someone creates an entry (e.g. for machine 1), and it has a created time. Then the next time the status changes, they create a new entry for machine 1, and that also has a created time. There could be entries for other machines between there, so it needs to be the next entry for the same machine.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Dec 2021 16:15:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-End-Time-from-next-entry-s-Created-Time/m-p/2242876#M53752</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-12-16T16:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: Need End Time from next entry's Created Time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-End-Time-from-next-entry-s-Created-Time/m-p/2243420#M53775</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="php"&gt;END Time =
VAR _A = [Created]
VAR _End =
    CALCULATE (
        MIN ( 'Table'[Created] ),
        FILTER (
            ALL ( 'Table' ),
            'Table'[Machine] = EARLIER ( 'Table'[Machine] )
                &amp;amp;&amp;amp; 'Table'[Created] &amp;gt; _A
        )
    )
RETURN
    _End&lt;/LI-CODE&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;if the output you are looking is as follow:&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;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;SPAN&gt;helps&lt;/SPAN&gt;&lt;/STRONG&gt;, please consider&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;accepting&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;it as the solution&lt;/SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/EM&gt;to help the other members find it more quickly.&lt;BR /&gt;&lt;STRONG&gt;&lt;SPAN&gt;Appreciate your Kudos!!&lt;BR /&gt;&lt;STRONG&gt;LinkedIn:&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&lt;A href="https://www.linkedin.com/in/vahid-dm/" target="_blank" rel="noopener"&gt;www.linkedin.com/in/vahid-dm/&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Dec 2021 23:42:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-End-Time-from-next-entry-s-Created-Time/m-p/2243420#M53775</guid>
      <dc:creator>VahidDM</dc:creator>
      <dc:date>2021-12-16T23:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Need End Time from next entry's Created Time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-End-Time-from-next-entry-s-Created-Time/m-p/2256897#M54485</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="315278" data-lia-user-login="VahidDM" class="lia-mention lia-mention-user"&gt;VahidDM&lt;/a&gt;&amp;nbsp;thanks for the response! I just got back to the office and tried this, and I got this error for Line 8:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A single value for column 'Machine' in table 'Table' cannot be determined.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions on what I'm still doing wrong?&lt;/P&gt;</description>
      <pubDate>Mon, 27 Dec 2021 13:54:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-End-Time-from-next-entry-s-Created-Time/m-p/2256897#M54485</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-12-27T13:54:42Z</dc:date>
    </item>
    <item>
      <title>Re: Need End Time from next entry's Created Time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-End-Time-from-next-entry-s-Created-Time/m-p/2256950#M54489</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="315278" data-lia-user-login="VahidDM" class="lia-mention lia-mention-user"&gt;VahidDM&lt;/a&gt;&amp;nbsp;I figured it out! It was me being stupid. But now I'm slightly less stupid! Thanks for the help!&lt;/P&gt;</description>
      <pubDate>Mon, 27 Dec 2021 13:58:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-End-Time-from-next-entry-s-Created-Time/m-p/2256950#M54489</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-12-27T13:58:44Z</dc:date>
    </item>
  </channel>
</rss>

