<?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>article Dealing with date formats in QlikView and QlikSense in Member Articles</title>
    <link>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/ta-p/1484207</link>
    <description>&lt;P&gt;Date formats can often be challenging for beginners, particularly when different data sources supply dates in different formats, and your reporting requirements specify yet another final date format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;There are two main functions for dealing with date formats.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H1&gt;Date() and Date#()&lt;/H1&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Often I see people using the two functions in different combinations with a bit of trial and error until they get the result they want, without really understanding why it has worked. But, with a few simple basics understood, this is easy to understand.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;First: Dates are a dual data type&lt;/H2&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Date fields, once properly formatted, are a dual data type. This means that each value in the field has two components, a string (text) representation of the date, and an underlying numeric component.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;You may have seen when working with dates in Microsoft Excel that sometimes when you change the format of a date cell you end up with 42019 instead of 15/01/2015. This number is a difference, in days, between the date and an “epoch date”, in this case 01/01/1900. This is done, because this way it’s much easier to subtract one date from another to find the difference or add a number of days, months or years to a date to forecast for example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Second: Each function manipulates only one component of that dual data type&lt;/H2&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Date#()&lt;/EM&gt;&lt;/STRONG&gt; takes a date string (e.g. the text ‘15/01/2015’) and calculates and adds the numeric component to make the proper dual data type date field. &lt;SPAN&gt;It leaves the string component unchanged.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Date()&lt;/EM&gt;&lt;/STRONG&gt; takes a number (either the number 42019 or an already properly interpreted date field with the underlying numeric component already in place) and calculates and adds (or changes) the string component. &lt;SPAN&gt;It leaves the numeric component unchanged.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Both functions take an optional second parameter as a format string for how to interpret in the case of &lt;STRONG&gt;&lt;EM&gt;Date()&lt;/EM&gt;&lt;/STRONG&gt; or how to format in the case of &lt;STRONG&gt;&lt;EM&gt;Date#()&lt;/EM&gt;&lt;/STRONG&gt;. If this second parameter is not provided, the default set in the script variables is assumed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Example: A string in the format 2015-01-15 needs to be loaded, interpreted as a date, and formatted to 15/01/2015.&lt;/H3&gt;
&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;
&lt;P&gt;Let's assume the source field is called [OrderDate].&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Solution: &lt;STRONG&gt;&lt;EM&gt;Date(Date#([OrderDate], 'YYYY-MM-DD'), 'DD/MM/YYYY') as Date&lt;/EM&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Reading from the inside out, we take the [OrderDate] field, apply &lt;STRONG&gt;&lt;EM&gt;Date#()&lt;/EM&gt;&lt;/STRONG&gt; to interpret the string and calculate the appropriate numerical component using the format mask YYYY-MM-DD, and then apply &lt;STRONG&gt;&lt;EM&gt;Date()&lt;/EM&gt;&lt;/STRONG&gt; to that result to reformat the string representation using the format mask DD/MM/YYYY.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Aside: Timestamps&lt;/H2&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Times and Timestamps take this simple concept one step further. In this case a time is again represented by a string (e.g. '12:00:00' or '15/01/2015 12:00:00') and the underlying numerical component will represent the time as a decimal fraction of a day (e.g. 0.5 or 42019.5). The corresponding functions are &lt;STRONG&gt;&lt;EM&gt;Time()&lt;/EM&gt;&lt;/STRONG&gt; and &lt;STRONG&gt;&lt;EM&gt;Time#()&lt;/EM&gt;&lt;/STRONG&gt; or &lt;STRONG&gt;&lt;EM&gt;Timestamp()&lt;/EM&gt;&lt;/STRONG&gt; and &lt;STRONG&gt;&lt;EM&gt;Timestamp#()&lt;/EM&gt;&lt;/STRONG&gt;.&lt;/P&gt;</description>
    <pubDate>Tue, 14 Jun 2022 12:39:53 GMT</pubDate>
    <dc:creator>dominicmander</dc:creator>
    <dc:date>2022-06-14T12:39:53Z</dc:date>
    <item>
      <title>Dealing with date formats in QlikView and QlikSense</title>
      <link>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/ta-p/1484207</link>
      <description>&lt;P&gt;Date formats can often be challenging for beginners, particularly when different data sources supply dates in different formats, and your reporting requirements specify yet another final date format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;There are two main functions for dealing with date formats.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H1&gt;Date() and Date#()&lt;/H1&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Often I see people using the two functions in different combinations with a bit of trial and error until they get the result they want, without really understanding why it has worked. But, with a few simple basics understood, this is easy to understand.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;First: Dates are a dual data type&lt;/H2&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Date fields, once properly formatted, are a dual data type. This means that each value in the field has two components, a string (text) representation of the date, and an underlying numeric component.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;You may have seen when working with dates in Microsoft Excel that sometimes when you change the format of a date cell you end up with 42019 instead of 15/01/2015. This number is a difference, in days, between the date and an “epoch date”, in this case 01/01/1900. This is done, because this way it’s much easier to subtract one date from another to find the difference or add a number of days, months or years to a date to forecast for example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Second: Each function manipulates only one component of that dual data type&lt;/H2&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Date#()&lt;/EM&gt;&lt;/STRONG&gt; takes a date string (e.g. the text ‘15/01/2015’) and calculates and adds the numeric component to make the proper dual data type date field. &lt;SPAN&gt;It leaves the string component unchanged.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Date()&lt;/EM&gt;&lt;/STRONG&gt; takes a number (either the number 42019 or an already properly interpreted date field with the underlying numeric component already in place) and calculates and adds (or changes) the string component. &lt;SPAN&gt;It leaves the numeric component unchanged.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Both functions take an optional second parameter as a format string for how to interpret in the case of &lt;STRONG&gt;&lt;EM&gt;Date()&lt;/EM&gt;&lt;/STRONG&gt; or how to format in the case of &lt;STRONG&gt;&lt;EM&gt;Date#()&lt;/EM&gt;&lt;/STRONG&gt;. If this second parameter is not provided, the default set in the script variables is assumed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Example: A string in the format 2015-01-15 needs to be loaded, interpreted as a date, and formatted to 15/01/2015.&lt;/H3&gt;
&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;
&lt;P&gt;Let's assume the source field is called [OrderDate].&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Solution: &lt;STRONG&gt;&lt;EM&gt;Date(Date#([OrderDate], 'YYYY-MM-DD'), 'DD/MM/YYYY') as Date&lt;/EM&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Reading from the inside out, we take the [OrderDate] field, apply &lt;STRONG&gt;&lt;EM&gt;Date#()&lt;/EM&gt;&lt;/STRONG&gt; to interpret the string and calculate the appropriate numerical component using the format mask YYYY-MM-DD, and then apply &lt;STRONG&gt;&lt;EM&gt;Date()&lt;/EM&gt;&lt;/STRONG&gt; to that result to reformat the string representation using the format mask DD/MM/YYYY.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Aside: Timestamps&lt;/H2&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Times and Timestamps take this simple concept one step further. In this case a time is again represented by a string (e.g. '12:00:00' or '15/01/2015 12:00:00') and the underlying numerical component will represent the time as a decimal fraction of a day (e.g. 0.5 or 42019.5). The corresponding functions are &lt;STRONG&gt;&lt;EM&gt;Time()&lt;/EM&gt;&lt;/STRONG&gt; and &lt;STRONG&gt;&lt;EM&gt;Time#()&lt;/EM&gt;&lt;/STRONG&gt; or &lt;STRONG&gt;&lt;EM&gt;Timestamp()&lt;/EM&gt;&lt;/STRONG&gt; and &lt;STRONG&gt;&lt;EM&gt;Timestamp#()&lt;/EM&gt;&lt;/STRONG&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2022 12:39:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/ta-p/1484207</guid>
      <dc:creator>dominicmander</dc:creator>
      <dc:date>2022-06-14T12:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with date formats in QlikView and QlikSense</title>
      <link>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484208#M284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent, concise explanation. One of the best explanations of Dates I've seen. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jan 2016 19:46:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484208#M284</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2016-01-25T19:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with date formats in QlikView and QlikSense</title>
      <link>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484209#M285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rob, appreciate it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's one of those things that I find self taught people who come to us for training have not often fully understood but is so simple once you explain it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jan 2016 21:38:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484209#M285</guid>
      <dc:creator>dominicmander</dc:creator>
      <dc:date>2016-01-25T21:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with date formats in QlikView and QlikSense</title>
      <link>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484210#M286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am rather new to Sense and I'm in that trial and error mode you refer to.&lt;/P&gt;&lt;P&gt;I have been struggling with PRIOR YTD. &lt;/P&gt;&lt;P&gt;It would really help me if I knew what formats were allowed on the Date and Date# functions - is that stated anywhere in the documentation/help text?&amp;nbsp; I see your examples use YYYY-MM-DD and DD/MM/YYY, are all combinations of Y M and D allowed such as YYMMDD?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jan 2016 22:33:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484210#M286</guid>
      <dc:creator />
      <dc:date>2016-01-26T22:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with date formats in QlikView and QlikSense</title>
      <link>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484211#M287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good question ... assuming the 5th January 2015&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;YY or YYYY can be used for year e.g. 15 or 2015&lt;/P&gt;&lt;P&gt;M or MM or MMM or MMMM can be used for month e.g. 2 or 02 or Feb or February&lt;/P&gt;&lt;P&gt;D or DD can be used for day e.g. 5 or 05&lt;/P&gt;&lt;P&gt;W or WWW or WWWW can be used for weekday e.g. 4 or Thu or Thursday&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2016 12:49:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484211#M287</guid>
      <dc:creator>dominicmander</dc:creator>
      <dc:date>2016-01-27T12:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with date formats in QlikView and QlikSense</title>
      <link>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484212#M288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can never remember the format codes!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Qliksense search the help for 'format codes'.&amp;nbsp; The help topic is called 'Conventions for number and time &lt;SPAN class="SearchHighlight SearchHighlight1"&gt;format&lt;/SPAN&gt;s'.&amp;nbsp; It would be handy if it were referenced in the help topics for functions that use the format codes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 06:00:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484212#M288</guid>
      <dc:creator>shanemichelon</dc:creator>
      <dc:date>2016-02-09T06:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with date formats in QlikView and QlikSense</title>
      <link>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484213#M289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have not seen such a simple explanation of the difference between date() - &lt;SPAN style="font-size: 13.3333px;"&gt;add/changes string component -&lt;/SPAN&gt;and date#() - &lt;SPAN style="font-size: 13.3333px;"&gt;adds numerical component.&amp;nbsp; Very helpful.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Mar 2016 19:41:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484213#M289</guid>
      <dc:creator>sarahplymale</dc:creator>
      <dc:date>2016-03-11T19:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with date formats in QlikView and QlikSense</title>
      <link>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484214#M290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/people/dominicmander"&gt;dominicmander&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #8b8b8b; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #8b8b8b; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px;"&gt;Here, if i want to show date like a square b square like that, How to show that?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #8b8b8b; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px;"&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/133442_Capture.PNG" style="height: auto;" /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #8b8b8b; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Like this,, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #8b8b8b; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #8b8b8b; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Let's Assume if date is 1-Aug-2016 Then i want to show like -- for that image,&amp;nbsp; 1 is instead of a and st is instead of 2 -- 1st-Aug-2016("st" should be acting as square like image)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #8b8b8b; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #8b8b8b; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;If 2nd Day -- nd&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;If 3rd Day -- rd&lt;/P&gt;&lt;P&gt;If 4th --- 30th Day -- th&lt;/P&gt;&lt;P&gt;If 31st Day -- st&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can i know how to achieve that? -- =Date(Now(),'DD' &amp;amp; '^rd' &amp;amp; ' ' &amp;amp; '-' &amp;amp; 'MMM-YYYY')&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #8b8b8b; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #8b8b8b; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2016 10:45:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484214#M290</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2016-08-03T10:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with date formats in QlikView and QlikSense</title>
      <link>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484215#M291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure that's possible I'm afraid ... at least I'm not aware of any way of doing that as a date format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2016 10:48:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484215#M291</guid>
      <dc:creator>dominicmander</dc:creator>
      <dc:date>2016-08-17T10:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with date formats in QlikView and QlikSense</title>
      <link>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484216#M292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: arial, sans, sans-serif; font-size: 13px;"&gt;I have some unwanted characters in my timestamp and 've been trying some different ways to format this into a date in QS, but have had no luck getting it to work. I'm hoping someone is smarter than me.&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: arial, sans, sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: arial, sans, sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;'October 11, 2016 at 08:37AM'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: arial, sans, sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: arial, sans, sans-serif; font-size: 13px;"&gt;The 'at' and the AM/PM stuff is freaking me out and the source only publishes dates in this way. Can anyone help me figure out how to convert this string via the correct Input Format?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2016 12:58:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484216#M292</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-12-20T12:58:55Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with date formats in QlikView and QlikSense</title>
      <link>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484217#M293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you'll have to parse it as two pieces and add them together:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=timestamp(&lt;/P&gt;&lt;P&gt;date#(SubField('October 11, 2016 at 08:37AM', ' at ', 1), 'MMMM D, YYYYY')&lt;/P&gt;&lt;P&gt;+ time#(SubField('October 11, 2016 at 08:37AM', ' at ', 2), 'hh:mmtt')&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com" rel="nofollow" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://qlikviewcookbook.com" rel="nofollow" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2016 18:46:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484217#M293</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2016-12-20T18:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with date formats in QlikView and QlikSense</title>
      <link>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484218#M294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is really helpful, thanks a million.&lt;/P&gt;&lt;P&gt;Is the "epoch date" always set to '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;01/01/1900' in qlikview?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2017 08:46:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484218#M294</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-17T08:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with date formats in QlikView and QlikSense</title>
      <link>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484219#M295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The epoch base in Qlik is Dec 30,1899; that is day 0.&amp;nbsp; Day 1 is Dec 31, 1899. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that in XLS date 1 is January 1st 1900. Date 60 in XLS is February 29th 1900, a date that does not exist. Starting date 61 XLS and Qlik have the same number for the same dates. See &lt;A href="https://support.microsoft.com/en-us/help/214326/excel-incorrectly-assumes-that-the-year-1900-is-a-leap-year" title="https://support.microsoft.com/en-us/help/214326/excel-incorrectly-assumes-that-the-year-1900-is-a-leap-year"&gt;https://support.microsoft.com/en-us/help/214326/excel-incorrectly-assumes-that-the-year-1900-is-a-leap-year&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2017 01:02:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/Dealing-with-date-formats-in-QlikView-and-QlikSense/tac-p/1484219#M295</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2017-07-18T01:02:22Z</dc:date>
    </item>
  </channel>
</rss>

