<?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: convert json date format to dd/mm/yyyy in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/convert-json-date-format-to-dd-mm-yyyy/m-p/2001716#M1231852</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;To add on to what&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/36735"&gt;@Lucas_Gatling&lt;/a&gt;&amp;nbsp; said, you can also play around with this in excel, to get the format.&lt;/P&gt;</description>
    <pubDate>Tue, 08 Nov 2022 12:41:44 GMT</pubDate>
    <dc:creator>Bill_Britt</dc:creator>
    <dc:date>2022-11-08T12:41:44Z</dc:date>
    <item>
      <title>convert json date format to dd/mm/yyyy</title>
      <link>https://community.qlik.com/t5/QlikView/convert-json-date-format-to-dd-mm-yyyy/m-p/2000564#M1231850</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Im trying to get the dd/mm/yyyy format for my date that i get through a REST connection, however every date comes in json format like this:&amp;nbsp;/Date(1667378999417-0000)/&amp;nbsp;&lt;BR /&gt;I have tried various methods of converting the date but nothing seems to do the trick, have anyone encountered this issue before?&lt;/P&gt;
&lt;P&gt;Brg,&lt;/P&gt;
&lt;P&gt;Ben&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/convert-json-date-format-to-dd-mm-yyyy/m-p/2000564#M1231850</guid>
      <dc:creator>Bendikl</dc:creator>
      <dc:date>2026-01-26T16:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: convert json date format to dd/mm/yyyy</title>
      <link>https://community.qlik.com/t5/QlikView/convert-json-date-format-to-dd-mm-yyyy/m-p/2001387#M1231851</link>
      <description>&lt;P&gt;Good afternoon Bendiki.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;JSON does not know anything about dates. What .NET does is a non-standard hack/extension. The problem with &lt;A href="http://net-informations.com/jq/iq/jdate.htm" target="_blank"&gt;&lt;U&gt;dates in JSON&lt;/U&gt;&lt;/A&gt; and really JavaScript in general – is that there's no equivalent literal representation for dates. In JavaScript following Date constructor straight away converts the milliseconds since 1970 to Date as follows:&lt;/P&gt;
&lt;P&gt;var jsonDate = new Date(1297246301973);&lt;/P&gt;
&lt;P&gt;Then let's convert it to js format:&lt;/P&gt;
&lt;P&gt;var date = new Date(parseInt(jsonDate.substr(6)));&lt;/P&gt;
&lt;P&gt;The substr() function takes out the /Date( part, and the parseInt() function gets the integer and ignores the )/ at the end. The resulting number is passed into the Date constructor .&lt;/P&gt;</description>
      <pubDate>Mon, 07 Nov 2022 19:50:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/convert-json-date-format-to-dd-mm-yyyy/m-p/2001387#M1231851</guid>
      <dc:creator>Lucas_Gatling</dc:creator>
      <dc:date>2022-11-07T19:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: convert json date format to dd/mm/yyyy</title>
      <link>https://community.qlik.com/t5/QlikView/convert-json-date-format-to-dd-mm-yyyy/m-p/2001716#M1231852</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;To add on to what&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/36735"&gt;@Lucas_Gatling&lt;/a&gt;&amp;nbsp; said, you can also play around with this in excel, to get the format.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Nov 2022 12:41:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/convert-json-date-format-to-dd-mm-yyyy/m-p/2001716#M1231852</guid>
      <dc:creator>Bill_Britt</dc:creator>
      <dc:date>2022-11-08T12:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: convert json date format to dd/mm/yyyy</title>
      <link>https://community.qlik.com/t5/QlikView/convert-json-date-format-to-dd-mm-yyyy/m-p/2001720#M1231853</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Thank you!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am pretty new to Qlik, but i tried adding it to the edit script and it didnt seem to read the code, is there another place within Qlikview i need to put this?&lt;/P&gt;
&lt;P&gt;brg,&lt;/P&gt;
&lt;P&gt;Ben&lt;/P&gt;</description>
      <pubDate>Tue, 08 Nov 2022 12:47:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/convert-json-date-format-to-dd-mm-yyyy/m-p/2001720#M1231853</guid>
      <dc:creator>Bendikl</dc:creator>
      <dc:date>2022-11-08T12:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: convert json date format to dd/mm/yyyy</title>
      <link>https://community.qlik.com/t5/QlikView/convert-json-date-format-to-dd-mm-yyyy/m-p/2001727#M1231854</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have to date the field like this.&lt;BR /&gt;&lt;BR /&gt;Date(FieldName, 'MMM-YYYY') as NewFieldName&lt;/P&gt;</description>
      <pubDate>Tue, 08 Nov 2022 13:01:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/convert-json-date-format-to-dd-mm-yyyy/m-p/2001727#M1231854</guid>
      <dc:creator>Bill_Britt</dc:creator>
      <dc:date>2022-11-08T13:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: convert json date format to dd/mm/yyyy</title>
      <link>https://community.qlik.com/t5/QlikView/convert-json-date-format-to-dd-mm-yyyy/m-p/2003000#M1231855</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Looking back at this, and searching, I can't find any date format that matches the above. Are you sure this is a date field? What system is it from?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 11:51:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/convert-json-date-format-to-dd-mm-yyyy/m-p/2003000#M1231855</guid>
      <dc:creator>Bill_Britt</dc:creator>
      <dc:date>2022-11-10T11:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: convert json date format to dd/mm/yyyy</title>
      <link>https://community.qlik.com/t5/QlikView/convert-json-date-format-to-dd-mm-yyyy/m-p/2003004#M1231856</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Yeah i tried formating it the way you suggested but it didnt work..&lt;/P&gt;
&lt;P&gt;It's data from Puzzel (&lt;A href="https://developer.puzzel.com/#/" target="_blank"&gt;https://developer.puzzel.com/#/&lt;/A&gt;) through a REST connection.&lt;/P&gt;
&lt;P&gt;This is how the date is displayed in the browser&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bendikl_0-1668081322984.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/93391i75C67607C8EBA21B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bendikl_0-1668081322984.png" alt="Bendikl_0-1668081322984.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 11:56:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/convert-json-date-format-to-dd-mm-yyyy/m-p/2003004#M1231856</guid>
      <dc:creator>Bendikl</dc:creator>
      <dc:date>2022-11-10T11:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: convert json date format to dd/mm/yyyy</title>
      <link>https://community.qlik.com/t5/QlikView/convert-json-date-format-to-dd-mm-yyyy/m-p/2003060#M1231857</link>
      <description>&lt;P&gt;&lt;STRONG&gt;OK, this is called &amp;nbsp;Epoch Unix Timestamp. You can find an example and a running clock at &lt;A href="https://www.unixtimestamp.com/?unixTimestampInput=%7B%7B%7Bs%7D%7D%7D" target="_blank"&gt;https://www.unixtimestamp.com/?unixTimestampInput=%7B%7B%7Bs%7D%7D%7D&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You will need to strip the -0000 off it and use &lt;/STRONG&gt;&amp;nbsp;timeStamp(Makedate(1970,1,1)+ 1668085945 /24/60/60 + Date((120/24/60) , 'YYYY-MM-DD hh:mm:ss')) &amp;nbsp;to convert it&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 13:21:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/convert-json-date-format-to-dd-mm-yyyy/m-p/2003060#M1231857</guid>
      <dc:creator>Bill_Britt</dc:creator>
      <dc:date>2022-11-10T13:21:56Z</dc:date>
    </item>
  </channel>
</rss>

