<?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: Data extraction issue - date format in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Data-extraction-issue-date-format/m-p/107657#M16888</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You do not have to change your default environmental setting to get the date format you're willing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read more about function Date# &lt;A href="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/InterpretationFunctions/date_hash.htm" title="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/InterpretationFunctions/date_hash.htm"&gt;https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/InterpretationFunctions/date_hash.htm&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;and Date &lt;A href="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/date-time-interpretation.htm" title="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/date-time-interpretation.htm"&gt;https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/date-time-interpretation.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example my default Date setting is:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SET DateFormat='YYYY.MM.DD';&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;But in case DB provides date like 30102010 I can write an expression:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=Date(Date#('30102010', 'DDMMYYYY'), 'DD-MM-YY')&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="216075" alt="Screenshot_1.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/216075_Screenshot_1.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Oct 2018 07:02:02 GMT</pubDate>
    <dc:creator>MindaugasBacius</dc:creator>
    <dc:date>2018-10-17T07:02:02Z</dc:date>
    <item>
      <title>Data extraction issue - date format</title>
      <link>https://community.qlik.com/t5/QlikView/Data-extraction-issue-date-format/m-p/107654#M16885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In database, date is 27-03-14 but when I am extracting the same through QV the date format is getting changed to 03/14/2027.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: There are multiple date formats present in the DB and there are multiple date columns present in the script if i change the default setting of date format then it will be applicable for all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to correct the above mentioned date format only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anyone have the idea how to sort out this situation then please share the solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2018 07:16:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-extraction-issue-date-format/m-p/107654#M16885</guid>
      <dc:creator>squreshi</dc:creator>
      <dc:date>2018-10-16T07:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: Data extraction issue - date format</title>
      <link>https://community.qlik.com/t5/QlikView/Data-extraction-issue-date-format/m-p/107655#M16886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you could try with loading like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(Date#('&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;27-03-14','DD-MM-YY'&lt;/SPAN&gt;)) as YourDateField&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2018 19:57:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-extraction-issue-date-format/m-p/107655#M16886</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2018-10-16T19:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: Data extraction issue - date format</title>
      <link>https://community.qlik.com/t5/QlikView/Data-extraction-issue-date-format/m-p/107656#M16887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First check your main script &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET DateFormat = 'DD-MM-YYY'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then while loading use &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Date(Date#('&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;27-03-14','DD-MM-YY'&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;)) as YourDateField&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 05:57:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-extraction-issue-date-format/m-p/107656#M16887</guid>
      <dc:creator>arvind1494</dc:creator>
      <dc:date>2018-10-17T05:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: Data extraction issue - date format</title>
      <link>https://community.qlik.com/t5/QlikView/Data-extraction-issue-date-format/m-p/107657#M16888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You do not have to change your default environmental setting to get the date format you're willing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read more about function Date# &lt;A href="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/InterpretationFunctions/date_hash.htm" title="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/InterpretationFunctions/date_hash.htm"&gt;https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/InterpretationFunctions/date_hash.htm&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;and Date &lt;A href="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/date-time-interpretation.htm" title="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/date-time-interpretation.htm"&gt;https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/date-time-interpretation.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example my default Date setting is:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SET DateFormat='YYYY.MM.DD';&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;But in case DB provides date like 30102010 I can write an expression:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=Date(Date#('30102010', 'DDMMYYYY'), 'DD-MM-YY')&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="216075" alt="Screenshot_1.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/216075_Screenshot_1.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 07:02:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-extraction-issue-date-format/m-p/107657#M16888</guid>
      <dc:creator>MindaugasBacius</dc:creator>
      <dc:date>2018-10-17T07:02:02Z</dc:date>
    </item>
  </channel>
</rss>

