<?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: Extract time from date using measure in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extract-time-from-date-using-measure/m-p/3172475#M114398</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="331079" data-lia-user-login="davehardikkumar" class="lia-mention lia-mention-user"&gt;davehardikkumar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;can you create or add tables?&lt;/P&gt;</description>
    <pubDate>Tue, 04 Apr 2023 19:36:28 GMT</pubDate>
    <dc:creator>tamerj1</dc:creator>
    <dc:date>2023-04-04T19:36:28Z</dc:date>
    <item>
      <title>Extract time from date using measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extract-time-from-date-using-measure/m-p/3172060#M114360</link>
      <description>&lt;P&gt;Is it possible to exteact time from date by uisng measure?&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 14:40:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extract-time-from-date-using-measure/m-p/3172060#M114360</guid>
      <dc:creator>davehardikkumar</dc:creator>
      <dc:date>2023-04-04T14:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: Extract time from date using measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extract-time-from-date-using-measure/m-p/3172067#M114361</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="331079" data-lia-user-login="davehardikkumar" class="lia-mention lia-mention-user"&gt;davehardikkumar&lt;/a&gt;&amp;nbsp;Yes:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Time Measure = 
  VAR __DateTime = MAX('Table'[DateTime])
  VAR __Result = __DateTime - TRUNC(__DateTime)
RETURN
  __Result&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 04 Apr 2023 14:43:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extract-time-from-date-using-measure/m-p/3172067#M114361</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2023-04-04T14:43:36Z</dc:date>
    </item>
    <item>
      <title>Re: Extract time from date using measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extract-time-from-date-using-measure/m-p/3172073#M114363</link>
      <description>&lt;P&gt;id&amp;nbsp; date&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; hour&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp;Mon, 13 Mar 2023 23:59:41&lt;/P&gt;&lt;P&gt;2&amp;nbsp; &amp;nbsp;Mon, 14 Mar 2023 22:51:40&lt;/P&gt;&lt;P&gt;3&amp;nbsp; &amp;nbsp;Mon, 15 Mar 2023 21:52:20&lt;/P&gt;&lt;P&gt;If I use above measure it gives me the max date. above is my table and i want to add measure in that table and display hour. how can I achieve that?&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 14:50:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extract-time-from-date-using-measure/m-p/3172073#M114363</guid>
      <dc:creator>davehardikkumar</dc:creator>
      <dc:date>2023-04-04T14:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: Extract time from date using measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extract-time-from-date-using-measure/m-p/3172172#M114373</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="331079" data-lia-user-login="davehardikkumar" class="lia-mention lia-mention-user"&gt;davehardikkumar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the column has a DateTime data type then you can use&lt;/P&gt;
&lt;P&gt;TIMEVALUE ( 'Table'[DateTime] )&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 15:38:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extract-time-from-date-using-measure/m-p/3172172#M114373</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-04-04T15:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Extract time from date using measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extract-time-from-date-using-measure/m-p/3172441#M114396</link>
      <description>&lt;P&gt;I want to use that seperated hours measure as slicer. How can I achieve that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 19:06:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extract-time-from-date-using-measure/m-p/3172441#M114396</guid>
      <dc:creator>davehardikkumar</dc:creator>
      <dc:date>2023-04-04T19:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: Extract time from date using measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extract-time-from-date-using-measure/m-p/3172442#M114397</link>
      <description>&lt;P&gt;unfortunately I have to use ssas module. so cant add/update column.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 19:08:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extract-time-from-date-using-measure/m-p/3172442#M114397</guid>
      <dc:creator>davehardikkumar</dc:creator>
      <dc:date>2023-04-04T19:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: Extract time from date using measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extract-time-from-date-using-measure/m-p/3172475#M114398</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="331079" data-lia-user-login="davehardikkumar" class="lia-mention lia-mention-user"&gt;davehardikkumar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;can you create or add tables?&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 19:36:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extract-time-from-date-using-measure/m-p/3172475#M114398</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-04-04T19:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: Extract time from date using measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extract-time-from-date-using-measure/m-p/3172492#M114400</link>
      <description>&lt;P&gt;Yes I can using measure&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 19:45:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extract-time-from-date-using-measure/m-p/3172492#M114400</guid>
      <dc:creator>davehardikkumar</dc:creator>
      <dc:date>2023-04-04T19:45:40Z</dc:date>
    </item>
  </channel>
</rss>

