<?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 date/time format in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/date-time-format/m-p/311784#M1198237</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there are some function, if you use it will show you the julian date. try ReloadTime in script or anyware in the text object properties so that you can see the time. Is this you want? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=ReloadTime()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shubham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 May 2011 11:29:31 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2011-05-19T11:29:31Z</dc:date>
    <item>
      <title>date/time format</title>
      <link>https://community.qlik.com/t5/QlikView/date-time-format/m-p/311783#M1198236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to import a string character as 01/01/2011 11:11:11 as a julian date in loading the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2011 11:10:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/date-time-format/m-p/311783#M1198236</guid>
      <dc:creator />
      <dc:date>2011-05-19T11:10:24Z</dc:date>
    </item>
    <item>
      <title>date/time format</title>
      <link>https://community.qlik.com/t5/QlikView/date-time-format/m-p/311784#M1198237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there are some function, if you use it will show you the julian date. try ReloadTime in script or anyware in the text object properties so that you can see the time. Is this you want? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=ReloadTime()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shubham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2011 11:29:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/date-time-format/m-p/311784#M1198237</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-05-19T11:29:31Z</dc:date>
    </item>
    <item>
      <title>date/time format</title>
      <link>https://community.qlik.com/t5/QlikView/date-time-format/m-p/311785#M1198238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are receiving a string with the exact format you describe then the following code will turn it into a Julian date - by this I understand a 5 digit figure, the first two digits being YY followed by the number of the day in the year (is this what you are after?):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=mid(text(year(makedate(mid(vDate,7,4)))),3,2) &amp;amp; num((makedate(mid(vDate,7,4),mid(vDate,4,2),mid(vDate,1,2)) - makedate(mid(vDate,7,4)))+1,'000')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2011 11:42:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/date-time-format/m-p/311785#M1198238</guid>
      <dc:creator>pat_agen</dc:creator>
      <dc:date>2011-05-19T11:42:09Z</dc:date>
    </item>
    <item>
      <title>date/time format</title>
      <link>https://community.qlik.com/t5/QlikView/date-time-format/m-p/311786#M1198239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this which will evaluate the incoming text string as a timestamp:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-style: normal; font-weight: bold;"&gt;timestamp#( &lt;/SPAN&gt;&lt;SPAN style="font-style: normal; font-weight: bold;"&gt;fieldname&lt;/SPAN&gt;&lt;SPAN style="font-style: normal; font-weight: bold;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-style: normal; font-weight: bold;"&gt;'DD/MM/YY HH:MM:SS'&lt;/SPAN&gt;&lt;SPAN style="font-style: normal; font-weight: bold;"&gt;) as JulianField&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-style: normal; font-weight: bold;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-style: normal;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-style: normal;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-style: normal;"&gt;Gordon&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2011 13:02:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/date-time-format/m-p/311786#M1198239</guid>
      <dc:creator />
      <dc:date>2011-05-19T13:02:37Z</dc:date>
    </item>
    <item>
      <title>date/time format</title>
      <link>https://community.qlik.com/t5/QlikView/date-time-format/m-p/311787#M1198240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fulqenzio, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gordon is correct, but try using hours:minutes:second in lower case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; font-style: normal; font-weight: bold;"&gt;timestamp#( &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-style: normal; font-weight: bold;"&gt;fieldname&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-style: normal; font-weight: bold;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-style: normal; font-weight: bold;"&gt;'DD/MM/YY hh:mm:ss'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-style: normal; font-weight: bold;"&gt;) as JulianField&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; font-style: normal; font-weight: bold;"&gt;- Sridhar&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; font-style: normal; font-weight: bold;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2011 13:13:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/date-time-format/m-p/311787#M1198240</guid>
      <dc:creator />
      <dc:date>2011-05-19T13:13:41Z</dc:date>
    </item>
    <item>
      <title>date/time format</title>
      <link>https://community.qlik.com/t5/QlikView/date-time-format/m-p/311788#M1198241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The reason is that: If you type the minute format specially in upper case it will print the month in place of the minute.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2011 19:55:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/date-time-format/m-p/311788#M1198241</guid>
      <dc:creator>cesaraccardi</dc:creator>
      <dc:date>2011-05-19T19:55:23Z</dc:date>
    </item>
  </channel>
</rss>

