<?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: time differe in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/time-differe/m-p/3772489#M147400</link>
    <description>&lt;P&gt;hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;use datediff( )&amp;nbsp;fuction&lt;/P&gt;&lt;P&gt;like below&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;column=
datediff(table[last updated date],table[created date],hour)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you want it in minute then simply change &lt;STRONG&gt;HOUR&lt;/STRONG&gt; to &lt;STRONG&gt;MINUTE&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 18 Mar 2024 19:14:09 GMT</pubDate>
    <dc:creator>Dangar332</dc:creator>
    <dc:date>2024-03-18T19:14:09Z</dc:date>
    <item>
      <title>time differe</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/time-differe/m-p/3772355#M147391</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;by using date difference&amp;nbsp;11-03-2024 16:00:00 -11-03-2024 13:20:08 expected is 00 02:39:52 but caming as&amp;nbsp;30 02:39:52 how to over come this and why it showing 30 days&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2024 18:08:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/time-differe/m-p/3772355#M147391</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-03-18T18:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: time differe</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/time-differe/m-p/3772489#M147400</link>
      <description>&lt;P&gt;hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;use datediff( )&amp;nbsp;fuction&lt;/P&gt;&lt;P&gt;like below&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;column=
datediff(table[last updated date],table[created date],hour)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you want it in minute then simply change &lt;STRONG&gt;HOUR&lt;/STRONG&gt; to &lt;STRONG&gt;MINUTE&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2024 19:14:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/time-differe/m-p/3772489#M147400</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2024-03-18T19:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: time differe</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/time-differe/m-p/3772516#M147403</link>
      <description>&lt;P&gt;Tnq for replying&lt;/P&gt;&lt;P&gt;But instead of datediff we can also do difference&amp;nbsp; in power query but I want to be except the same output value to find the average date and time for all the records&amp;nbsp; but it showing 30&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2024 19:33:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/time-differe/m-p/3772516#M147403</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-03-18T19:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: time differe</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/time-differe/m-p/3773069#M147434</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 made simple samples and you can check the results below:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = var _D1 = DATEDIFF(MAX('Table'[Created Date]),MAX('Table'[Updated Date]),DAY)
var _D2 = MAX('Table'[Updated Date]) - MAX('Table'[Created Date])
RETURN COMBINEVALUES(" ",_D1,FORMAT(_D2,"hh:mm:ss"))
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;An attachment for your reference. Hope it helps!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Community Support Team_ Scott Chang&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2024 02:36:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/time-differe/m-p/3773069#M147434</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-03-19T02:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: time differe</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/time-differe/m-p/3773347#M147441</link>
      <description>&lt;P&gt;Super Working tnq&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2024 05:15:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/time-differe/m-p/3773347#M147441</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-03-19T05:15:11Z</dc:date>
    </item>
  </channel>
</rss>

