<?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: TimeStamp format in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/TimeStamp-format/m-p/1990562#M81917</link>
    <description>&lt;P&gt;as below&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 513px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/90929iDA2D5B18DC4E20BF/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;temp:
load 
new_timestamp
,Day(new_timestamp) as day
,date(floor(new_timestamp)) as date
;
load timestamp#(replace(timstaaamp,' ','T'),'YYYY-MM-DDhh:mm±hh:mm')  as new_timestamp inline [
timstaaamp
2021-08-02 11:00:00+01:00
];&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 10 Oct 2022 06:22:27 GMT</pubDate>
    <dc:creator>vinieme12</dc:creator>
    <dc:date>2022-10-10T06:22:27Z</dc:date>
    <item>
      <title>TimeStamp format</title>
      <link>https://community.qlik.com/t5/App-Development/TimeStamp-format/m-p/1989697#M81813</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am loading a timestamp field in the format '&lt;STRONG&gt;2021-08-02 11:00:00+00&lt;/STRONG&gt;' and I cannot convert it to DAY or MONTH since it is probably not recognized as timestamp.&lt;/P&gt;
&lt;P&gt;In the load script I have this format:&amp;nbsp;&lt;EM&gt;SET TimestampFormat='YYYY-MM-DD hh:mm:ss[.fff] TT';&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What can I do?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 15:37:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/TimeStamp-format/m-p/1989697#M81813</guid>
      <dc:creator>alexC</dc:creator>
      <dc:date>2022-10-06T15:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: TimeStamp format</title>
      <link>https://community.qlik.com/t5/App-Development/TimeStamp-format/m-p/1989821#M81830</link>
      <description>&lt;P&gt;Try something like this -&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Timestamp#(subfield('2021-08-02 11:00:00+00','+',1),'YYYY-MM-DD hh:mm:ss')&lt;/P&gt;
&lt;P&gt;//You may need to use the actual field instead of the subfield I have used in the example.&lt;/P&gt;
&lt;P&gt;'+00' indicates time zone I think, but not sure how do you want to utilize it, there is a function in qlik to convert time to local timing but I never used that -&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense/June2018/Subsystems/Hub/Content/Scripting/DateAndTimeFunctions/converttolocaltime.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense/June2018/Subsystems/Hub/Content/Scripting/DateAndTimeFunctions/converttolocaltime.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 21:54:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/TimeStamp-format/m-p/1989821#M81830</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2022-10-06T21:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: TimeStamp format</title>
      <link>https://community.qlik.com/t5/App-Development/TimeStamp-format/m-p/1989958#M81845</link>
      <description>&lt;P&gt;Thank you, actually it worked, but it is a temporary solution till I understand how to use it.&lt;/P&gt;
&lt;P&gt;I think '+00' represents the summer/winter time adjustment and/or time zone.&lt;/P&gt;
&lt;P&gt;By trimming (ignoring) it my data will deviate by 2-3 hours (in my particular case).&lt;/P&gt;</description>
      <pubDate>Fri, 07 Oct 2022 07:26:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/TimeStamp-format/m-p/1989958#M81845</guid>
      <dc:creator>alexC</dc:creator>
      <dc:date>2022-10-07T07:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: TimeStamp format</title>
      <link>https://community.qlik.com/t5/App-Development/TimeStamp-format/m-p/1990562#M81917</link>
      <description>&lt;P&gt;as below&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 513px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/90929iDA2D5B18DC4E20BF/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;temp:
load 
new_timestamp
,Day(new_timestamp) as day
,date(floor(new_timestamp)) as date
;
load timestamp#(replace(timstaaamp,' ','T'),'YYYY-MM-DDhh:mm±hh:mm')  as new_timestamp inline [
timstaaamp
2021-08-02 11:00:00+01:00
];&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 06:22:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/TimeStamp-format/m-p/1990562#M81917</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-10-10T06:22:27Z</dc:date>
    </item>
  </channel>
</rss>

