<?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: Time Conversion in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710826#M1060163</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much, extremely helpful. Everything working perfectly now. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Sep 2014 23:36:34 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-09-30T23:36:34Z</dc:date>
    <item>
      <title>Time Conversion</title>
      <link>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710818#M1060155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One of the fields in my data file is Day of week and time as follows. I am trying to load them as two fields, Day of week and Time. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mon 3:22PM&lt;/P&gt;&lt;P&gt;Tue 11:05AM&lt;/P&gt;&lt;P&gt;Mon 4:11AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use Left(...) for DOW, Right(...) for the Time but can't get it to show as hh:mm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; left(@3,3) as dow, &lt;/P&gt;&lt;P&gt; Date(mid(@3,5,7),'hh:mm')&amp;nbsp; as AirTime&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried Time# as well.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Sep 2014 13:46:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710818#M1060155</guid>
      <dc:creator />
      <dc:date>2014-09-28T13:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: Time Conversion</title>
      <link>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710819#M1060156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For times and date it is always recommended that you use the format functions so that QlikView can properly format your data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left() can do the trick, but I used Subfield() instead to find the different words based on the white space.&lt;/P&gt;&lt;P&gt;SubField(DayTime, ' ', 1) returns the day name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the time part, you can use he Time#() function. This takes a text as input, and a format code that dictates how the text should be interpreted. In this case the time appears to be minutes (mm), hours (hh) and AM/PM (tt). See "Format Codes for Interpretation and Formatting Functions" in documentation of help for more format code details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Time#() return a dual value with the correct underlying numerical representation of the time, but the visual value still looks as the loaded text. Best practice is to reformat the presentation value also, and for this reason the outer Time() is added. After the visual value will be inline with the TimeFormat system variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;SET TimeFormat='hh:mm tt';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; SubField(DayTime, ' ', 1) AS Day,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Time(Time#(SubField(DayTime, ' ', 2), 'hh:mmtt')) AS TimeValue&lt;/P&gt;&lt;P&gt;Inline [&lt;/P&gt;&lt;P&gt;DayTime&lt;/P&gt;&lt;P&gt;Mon 3:22PM&lt;/P&gt;&lt;P&gt;Tue 11:05AM&lt;/P&gt;&lt;P&gt;Mon 4:11AM&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Sep 2014 14:20:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710819#M1060156</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2014-09-28T14:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: Time Conversion</title>
      <link>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710820#M1060157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect, Thank you SO MUCH!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Sep 2014 14:39:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710820#M1060157</guid>
      <dc:creator />
      <dc:date>2014-09-28T14:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: Time Conversion</title>
      <link>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710821#M1060158</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;try also to generate a 'real' weekday name, i.e. one with underlying numerical value, in order to be able to calculate with and to sort by this field:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="67820" alt="QlikCommunity_Thread_135270_Pic1.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/67820_QlikCommunity_Thread_135270_Pic1.JPG.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro _jivemacro_uid_141191871308249 jive_macro_code" jivemacro_uid="_141191871308249"&gt;
&lt;P&gt;LOAD Dual(Left(@3,3),(Index(Upper('$(DayNames)'),Upper(Left(@3,3)))+3)/4) as dow,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Time#(Right(@3,Len(@3)-4),'hh:mmTT') as AirTime&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Inline [&lt;/P&gt;
&lt;P&gt;@3&lt;/P&gt;
&lt;P&gt;Mon 3:22PM&lt;/P&gt;
&lt;P&gt;Tue 11:05AM&lt;/P&gt;
&lt;P&gt;Thu 4:11AM&lt;/P&gt;
&lt;P&gt;Sat 4:12AM&lt;/P&gt;
&lt;P&gt;Mon 10:13AM&lt;/P&gt;
&lt;P&gt;Sun 4:11PM&lt;/P&gt;
&lt;P&gt;Wed 5:11AM&lt;/P&gt;
&lt;P&gt;Mon 8:11PM&lt;/P&gt;
&lt;P&gt;Fri 7:11AM&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&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;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Sep 2014 15:38:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710821#M1060158</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-09-28T15:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: Time Conversion</title>
      <link>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710822#M1060159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load Left(Txt,3),Time(Time#(Mid(Txt,5,11),'hh:mmTT')) Inline [&lt;/P&gt;&lt;P&gt;Txt&lt;/P&gt;&lt;P&gt;Mon 3:22PM &lt;/P&gt;&lt;P&gt;Tue 11:05AM&lt;/P&gt;&lt;P&gt;Mon 4:11AM ];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Sep 2014 15:39:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710822#M1060159</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2014-09-28T15:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Time Conversion</title>
      <link>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710823#M1060160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree with &lt;A href="https://community.qlik.com/qlik-users/61824"&gt;Marco Wedel&lt;/A&gt;, that the day should be stored as a proper dual value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My suggestion would be to consider avoiding string functions, as these slow down the reload if you have many of iterations. And I find it harder to read than the alternative methods.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my additional example below preceding load is used to generate a temporary day value which I discard in the last load. This way this operation only has to be written once and the TmpDay field can be used instead. I find this easier to read and maintain. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The dual day value I generate in two different ways. Wildmatch() is nice due to it being case insensitive, so you do not have to use Upper() or Lower() to compensate for your value. Day1 will index the days from 0-6 (Mon-Sun), and Day2 is index 1-7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want the AM and PM to be in upper case, just switch the tt into TT in the format variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="_jivemacro_uid_14119228556277204 jive_text_macro jive_macro_code" jivemacro_uid="_14119228556277204" modifiedtitle="true"&gt;
&lt;P&gt;SET TimeFormat='hh:mm tt';&lt;/P&gt;
&lt;P&gt;SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;&amp;nbsp; TimeValue,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Weekday(Date(WildMatch(TmpDay, 'Mon','Tue','Wed','Thu','Fri','Sat','Sun')+365, 'WWW') ) AS Day1, &lt;/P&gt;
&lt;P&gt;&amp;nbsp; Dual(TmpDay, WildMatch(TmpDay, 'Mon','Tue','Wed','Thu','Fri','Sat','Sun')) AS Day2 &lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;&amp;nbsp; SubField(DayTime, ' ', 1) AS TmpDay,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Time(Time#(SubField(DayTime, ' ', 2), 'hh:mmtt')) AS TimeValue&lt;/P&gt;
&lt;P&gt;Inline [&lt;/P&gt;
&lt;P&gt;DayTime&lt;/P&gt;
&lt;P&gt;Mon 3:22PM&lt;/P&gt;
&lt;P&gt;Tue 11:05AM&lt;/P&gt;
&lt;P&gt;Sun 4:11AM&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Sep 2014 16:48:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710823#M1060160</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2014-09-28T16:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Time Conversion</title>
      <link>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710824#M1060161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please don't forget to mark replies as helpful and/or correct, so that community members know when the question has been answered and does not required further attention.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Sep 2014 16:50:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710824#M1060161</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2014-09-28T16:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: Time Conversion</title>
      <link>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710825#M1060162</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;your solution like mine needs to be modified to adapt to localized DayNames.&lt;/P&gt;&lt;P&gt;To circumvent this limitation I suggest the following script (though it is case sensitive again):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_14119416699148232" jivemacro_uid="_14119416699148232"&gt;
&lt;P&gt;LOAD WeekDay(SubStringCount(SubField('$(DayNames)',SubField(@3,' ',1),1),';')+2) as dow,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Time#(SubField(@3,' ',2),'hh:mmTT') as AirTime&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Inline [&lt;/P&gt;
&lt;P&gt;@3&lt;/P&gt;
&lt;P&gt;Mon 3:22PM&lt;/P&gt;
&lt;P&gt;Tue 11:05AM&lt;/P&gt;
&lt;P&gt;Thu 4:11AM&lt;/P&gt;
&lt;P&gt;Sat 4:12AM&lt;/P&gt;
&lt;P&gt;Mon 10:13AM&lt;/P&gt;
&lt;P&gt;Sun 4:11PM&lt;/P&gt;
&lt;P&gt;Wed 5:11AM&lt;/P&gt;
&lt;P&gt;Mon 8:11PM&lt;/P&gt;
&lt;P&gt;Fri 7:11AM&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By this already defined day names do not have to be redefined in this day of week calculation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, I like your Wildmatch approach for it's case insensitivity.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I tested it and found that&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_14119424960956616" jivemacro_uid="_14119424960956616"&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f8f8f8;"&gt;Weekday(&lt;/SPAN&gt;&lt;SPAN class="keyword" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #006699; background-color: #f8f8f8;"&gt;Date&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f8f8f8;"&gt;(WildMatch(TmpDay, &lt;/SPAN&gt;&lt;SPAN class="string" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: blue; background-color: #f8f8f8;"&gt;'Mon'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f8f8f8;"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: blue; background-color: #f8f8f8;"&gt;'Tue'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f8f8f8;"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: blue; background-color: #f8f8f8;"&gt;'Wed'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f8f8f8;"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: blue; background-color: #f8f8f8;"&gt;'Thu'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f8f8f8;"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: blue; background-color: #f8f8f8;"&gt;'Fri'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f8f8f8;"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: blue; background-color: #f8f8f8;"&gt;'Sat'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f8f8f8;"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: blue; background-color: #f8f8f8;"&gt;'Sun'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f8f8f8;"&gt;)+365, &lt;/SPAN&gt;&lt;SPAN class="string" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: blue; background-color: #f8f8f8;"&gt;'WWW'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f8f8f8;"&gt;) ) &lt;/SPAN&gt;&lt;SPAN class="keyword" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #006699; background-color: #f8f8f8;"&gt;AS&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f8f8f8;"&gt; Day1&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;can be abbreviated to this version:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_14119418929937840" jivemacro_uid="_14119418929937840" modifiedtitle="true"&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Weekday(WildMatch(TmpDay, 'Mon','Tue','Wed','Thu','Fri','Sat','Sun')+1) as Day1&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Weekday function works modulo 7, so +365 is equal to +1.&lt;/P&gt;&lt;P&gt;The Date function again can be removed because as a formatting function it does not influence the numerical value of it's parameter.&lt;/P&gt;&lt;P&gt;An explanation for the offset of +1 leading to correct day names is that e.g. 2 is interpreted as 2 days after the starting day of the QV internal date representation, i.e. 2 days after Sat. 12/30/1899 which is Mon. 01/01/1900.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&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;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Sep 2014 22:18:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710825#M1060162</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-09-28T22:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: Time Conversion</title>
      <link>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710826#M1060163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much, extremely helpful. Everything working perfectly now. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2014 23:36:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710826#M1060163</guid>
      <dc:creator />
      <dc:date>2014-09-30T23:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: Time Conversion</title>
      <link>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710827#M1060164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Anbu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2014 23:38:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710827#M1060164</guid>
      <dc:creator />
      <dc:date>2014-09-30T23:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: Time Conversion</title>
      <link>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710828#M1060165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please close this thread by marking correct (and helpful if you like) answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 03:11:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Time-Conversion/m-p/710828#M1060165</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-10-01T03:11:51Z</dc:date>
    </item>
  </channel>
</rss>

