<?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 Is there a standardized date format I should implement on load? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Is-there-a-standardized-date-format-I-should-implement-on-load/m-p/503818#M685928</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know QlikView does a great job of recognizing dates but on my QVD creation, should I transform each date so it is always recognized in further scripting without question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I ask because I ran into an issue with an intervalmatch() solution I was trying and it did not seem to recognize the date properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I ask, should we always transform the date, datetime and time fields in the load statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so, what is recommended to always work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Jan 2014 20:55:58 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-01-13T20:55:58Z</dc:date>
    <item>
      <title>Is there a standardized date format I should implement on load?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-there-a-standardized-date-format-I-should-implement-on-load/m-p/503818#M685928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know QlikView does a great job of recognizing dates but on my QVD creation, should I transform each date so it is always recognized in further scripting without question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I ask because I ran into an issue with an intervalmatch() solution I was trying and it did not seem to recognize the date properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I ask, should we always transform the date, datetime and time fields in the load statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so, what is recommended to always work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jan 2014 20:55:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-there-a-standardized-date-format-I-should-implement-on-load/m-p/503818#M685928</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-13T20:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a standardized date format I should implement on load?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-there-a-standardized-date-format-I-should-implement-on-load/m-p/503819#M685929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I load date fields with a date() function to ensure the date is held as a dual value. &lt;/P&gt;&lt;P&gt;You may also need to use date#() to ensure correct conversion depending on your date format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E.g. Date(date#(date_field, date_format))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(date#(transaction_date, 'MM DD YY')) as trans_date&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jan 2014 21:03:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-there-a-standardized-date-format-I-should-implement-on-load/m-p/503819#M685929</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2014-01-13T21:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a standardized date format I should implement on load?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-there-a-standardized-date-format-I-should-implement-on-load/m-p/503820#M685930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the beginning of your load script, you should see a list of variables that look like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET ThousandSep=',';&lt;/P&gt;&lt;P&gt;SET DecimalSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyThousandSep=',';&lt;/P&gt;&lt;P&gt;SET MoneyDecimalSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyFormat='$#,##0.00;($#,##0.00)';&lt;/P&gt;&lt;P&gt;SET TimeFormat='h:mm:ss TT';&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SET DateFormat='M/D/YYYY';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;SET TimestampFormat='M/D/YYYY h:mm:ss[.fff] TT';&lt;/P&gt;&lt;P&gt;SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;/P&gt;&lt;P&gt;SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is here where you can set the date format that you want to be recognized, so if you have one that is mostly used, set the date format here and QlikView should always recognize it as a date.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jan 2014 21:04:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-there-a-standardized-date-format-I-should-implement-on-load/m-p/503820#M685930</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2014-01-13T21:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a standardized date format I should implement on load?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-there-a-standardized-date-format-I-should-implement-on-load/m-p/503821#M685931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also set a default date format on a field by field basis on the document properties, number tab.&lt;/P&gt;&lt;P&gt;This screen also defines default number formats for each field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jan 2014 21:07:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-there-a-standardized-date-format-I-should-implement-on-load/m-p/503821#M685931</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2014-01-13T21:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a standardized date format I should implement on load?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-there-a-standardized-date-format-I-should-implement-on-load/m-p/503822#M685932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Colin, that is what I was leaning towards and wondered if that would be correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nicole, I am familiar with with initial date setup, it's just from one particular QVD I was loading it was bringing in the InvoiceDate column with two different datatypes.&amp;nbsp; At least it was being read that way.&amp;nbsp; This was in turn breaking my intervalmatch() which is why I wanted a good standard way to FORCE the data to bend to my will.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you both for the quick response.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jan 2014 22:08:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-there-a-standardized-date-format-I-should-implement-on-load/m-p/503822#M685932</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-13T22:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a standardized date format I should implement on load?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-there-a-standardized-date-format-I-should-implement-on-load/m-p/503823#M685933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Darrin, the Qlikview will store the dates and time stamps into numbers. So the the qlikview interpret the date fields easily without any problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jan 2014 22:34:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-there-a-standardized-date-format-I-should-implement-on-load/m-p/503823#M685933</guid>
      <dc:creator />
      <dc:date>2014-01-13T22:34:16Z</dc:date>
    </item>
  </channel>
</rss>

