<?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 convert date text to data type date using DAX in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/convert-date-text-to-data-type-date-using-DAX/m-p/3300124#M123060</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Having issue converting this date text to data type date:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Feb 3, 2021 12:00:00 EST&lt;BR /&gt;&lt;BR /&gt;I tried using&amp;nbsp;Date Format = DATEVALUE&amp;nbsp;and&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;DATEVALUE(FORMAT(Details[&lt;SPAN&gt;Plugin Modification Date&lt;/SPAN&gt;],"MMM/DD/YYYY HH:MM:SS EST"))&lt;BR /&gt;&lt;BR /&gt;I created a new column to test those 2 functions but get a text couldn't convert to date type error&lt;/DIV&gt;</description>
    <pubDate>Fri, 23 Jun 2023 16:08:13 GMT</pubDate>
    <dc:creator>theglamgamer</dc:creator>
    <dc:date>2023-06-23T16:08:13Z</dc:date>
    <item>
      <title>convert date text to data type date using DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/convert-date-text-to-data-type-date-using-DAX/m-p/3300124#M123060</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Having issue converting this date text to data type date:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Feb 3, 2021 12:00:00 EST&lt;BR /&gt;&lt;BR /&gt;I tried using&amp;nbsp;Date Format = DATEVALUE&amp;nbsp;and&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;DATEVALUE(FORMAT(Details[&lt;SPAN&gt;Plugin Modification Date&lt;/SPAN&gt;],"MMM/DD/YYYY HH:MM:SS EST"))&lt;BR /&gt;&lt;BR /&gt;I created a new column to test those 2 functions but get a text couldn't convert to date type error&lt;/DIV&gt;</description>
      <pubDate>Fri, 23 Jun 2023 16:08:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/convert-date-text-to-data-type-date-using-DAX/m-p/3300124#M123060</guid>
      <dc:creator>theglamgamer</dc:creator>
      <dc:date>2023-06-23T16:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: convert date text to data type date using DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/convert-date-text-to-data-type-date-using-DAX/m-p/3300155#M123063</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="566563" data-lia-user-login="theglamgamer" class="lia-mention lia-mention-user"&gt;theglamgamer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please try CONVERT - DATETIME. otherwise it will be complex &lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2023 16:22:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/convert-date-text-to-data-type-date-using-DAX/m-p/3300155#M123063</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-06-23T16:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: convert date text to data type date using DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/convert-date-text-to-data-type-date-using-DAX/m-p/3302620#M123263</link>
      <description>&lt;P&gt;Can you share an example? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 14:35:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/convert-date-text-to-data-type-date-using-DAX/m-p/3302620#M123263</guid>
      <dc:creator>theglamgamer</dc:creator>
      <dc:date>2023-06-26T14:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: convert date text to data type date using DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/convert-date-text-to-data-type-date-using-DAX/m-p/3302671#M123269</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="566563" data-lia-user-login="theglamgamer" class="lia-mention lia-mention-user"&gt;theglamgamer&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Column = CONVERT ( LEFT ( 'Table'[Date], 12 ), DATETIME )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also DATEVALUE + LEFT should work&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Column = DATEVALUE ( LEFT ( 'Table'[Date], 12 ) )&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;</description>
      <pubDate>Mon, 26 Jun 2023 15:06:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/convert-date-text-to-data-type-date-using-DAX/m-p/3302671#M123269</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-06-26T15:06:49Z</dc:date>
    </item>
  </channel>
</rss>

