<?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: Date and time in Qliksense in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Date-and-time-in-Qliksense/m-p/1681601#M51864</link>
    <description>&lt;P&gt;&amp;nbsp;Thank you Vegar !! It was great help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 04 Mar 2020 09:24:06 GMT</pubDate>
    <dc:creator>Mamta123</dc:creator>
    <dc:date>2020-03-04T09:24:06Z</dc:date>
    <item>
      <title>Date and time in Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Date-and-time-in-Qliksense/m-p/1680852#M51801</link>
      <description>&lt;P&gt;I have date column in the format given below:&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1/1/2019 4:34:00 AM&lt;/P&gt;&lt;P&gt;From the data extracted, I need to count the number of tickets created between 4.00 am Last day and 4.00 PM today.&lt;/P&gt;&lt;P&gt;I need to include time and date in the calculation.The calculation is used in one of the visualization.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Dec 2021 15:54:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Date-and-time-in-Qliksense/m-p/1680852#M51801</guid>
      <dc:creator>Mamta123</dc:creator>
      <dc:date>2021-12-22T15:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: Date and time in Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Date-and-time-in-Qliksense/m-p/1680894#M51805</link>
      <description>&lt;P&gt;I would consider introducing a new business day field (consider it as date version of fiscal year).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Take a look at my script and the output shown in picture below.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SET TimestampFormat='M/D/YYYY hh:mm:ss TT';

Output:
LOAD 
  DayName(RecordedTime,0, time#(4, 'h') ) as BusinessDay,
  DayName(RecordedTime) as CalendarDay,
  RecordedTime
inline [
RecordedTime
1/1/2019 4:34:00 AM
2/1/2019 4:40:00 AM
2/1/2019 3:34:00 AM
3/1/2019 3:34:00 AM
3/1/2019 06:37:00 PM
4/1/2019 01:37:00 AM
4/1/2019 03:37:00 AM
4/1/2019 08:37:00 PM
4/1/2019 11:37:00 PM
4/1/2019 07:37:00 AM
];&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/29416i6EFEC8F7349762E5/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2020 12:36:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Date-and-time-in-Qliksense/m-p/1680894#M51805</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2020-03-02T12:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: Date and time in Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Date-and-time-in-Qliksense/m-p/1681239#M51833</link>
      <description>&lt;P&gt;The BusinessDay is not showing up&lt;/P&gt;&lt;P&gt;I have used the code:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Timestamp(Timestamp#([LastUpdated], 'M/D/YYYY hh:mm') ) AS [LU],&lt;BR /&gt;Timestamp(Timestamp#([ProcessCreationDate], 'M/D/YYYY hh:mm') ) AS [TestData],&lt;BR /&gt;DayName(TestData,0, time#(4, 'h')) as [BusinessDay]&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Scrn 3.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/29502iBBC9489E0D88A4CE/image-size/large?v=v2&amp;amp;px=999" role="button" title="Scrn 3.png" alt="Scrn 3.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 10:28:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Date-and-time-in-Qliksense/m-p/1681239#M51833</guid>
      <dc:creator>Mamta123</dc:creator>
      <dc:date>2020-03-03T10:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: Date and time in Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Date-and-time-in-Qliksense/m-p/1681557#M51858</link>
      <description>&lt;P&gt;Does your TestData turn out correct? If so then you could try this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN&gt;DayName(Timestamp#([ProcessCreationDate], 'M/D/YYYY hh:mm'),0, time#(4, 'h')) as [BusinessDay]&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 06:28:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Date-and-time-in-Qliksense/m-p/1681557#M51858</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2020-03-04T06:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: Date and time in Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Date-and-time-in-Qliksense/m-p/1681601#M51864</link>
      <description>&lt;P&gt;&amp;nbsp;Thank you Vegar !! It was great help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 09:24:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Date-and-time-in-Qliksense/m-p/1681601#M51864</guid>
      <dc:creator>Mamta123</dc:creator>
      <dc:date>2020-03-04T09:24:06Z</dc:date>
    </item>
  </channel>
</rss>

