<?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: 1 field in 2 columns Load? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23066#M776221</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Date (Floor (Timestamp#(yourDateTime,'DD/MM/YYYY hh:mm'))) As Date,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Time(Frac(Timestamp#(yourDateTime,'DD/MM/YYYY hh:mm'))) As Time&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Apr 2018 19:20:53 GMT</pubDate>
    <dc:creator>sasiparupudi1</dc:creator>
    <dc:date>2018-04-26T19:20:53Z</dc:date>
    <item>
      <title>1 field in 2 columns Load?</title>
      <link>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23063#M776218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a column of Table like this.&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="120" style="border: 1px solid rgb(0, 0, 0); border-image: none; width: 120px; height: 122px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Time&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;3/12/2015 00:21&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;12/11/2014 01:12&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;1/5/2014 00:32&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;...&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to load that in 2 columns like this. The loaded Date has a same length.&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="84" style="border: 1px solid rgb(0, 0, 0); border-image: none; width: 203px; height: 86px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Date&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Time&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;03/12/2015&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;00:21&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;12/11/2014&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;01:12&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;01/05/2014&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;00:32&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;...&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;...&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Have u a ideal? Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23063#M776218</guid>
      <dc:creator>tomcatxx</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: 1 field in 2 columns Load?</title>
      <link>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23064#M776219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T:LOAD * INLINE [&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Time&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3/12/2015 00:21&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12/11/2014 01:12&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1/5/2014 00:32&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;F:&lt;/P&gt;&lt;P&gt;load SubField(Time,' ',1) as Date,&lt;/P&gt;&lt;P&gt;Right(Time,4) as Time&lt;/P&gt;&lt;P&gt;Resident T;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2018 15:36:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23064#M776219</guid>
      <dc:creator>shiveshsingh</dc:creator>
      <dc:date>2018-04-26T15:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: 1 field in 2 columns Load?</title>
      <link>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23065#M776220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OR THIS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T:LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Time&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3/12/2015 00:21&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12/11/2014 01:12&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1/5/2014 00:32&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;F:&lt;/P&gt;&lt;P&gt;load DATE(date#(SubField(Time,' ',1),'DD/MM/YYYY'),'DD/MM/YYYY') as Date,&lt;/P&gt;&lt;P&gt;Right(Time,4) as Time&lt;/P&gt;&lt;P&gt;Resident T;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2018 15:39:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23065#M776220</guid>
      <dc:creator>shiveshsingh</dc:creator>
      <dc:date>2018-04-26T15:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: 1 field in 2 columns Load?</title>
      <link>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23066#M776221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Date (Floor (Timestamp#(yourDateTime,'DD/MM/YYYY hh:mm'))) As Date,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Time(Frac(Timestamp#(yourDateTime,'DD/MM/YYYY hh:mm'))) As Time&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2018 19:20:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23066#M776221</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2018-04-26T19:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: 1 field in 2 columns Load?</title>
      <link>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23067#M776222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;DateField:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; *, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Timestamp&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Timestamp#&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DateTimeField&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, 'MM/DD/YYYY hh:mm'), 'hh:mm') &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;AS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;TimeStamp&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Date&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Date#&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DateTimeField&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, 'MM/DD/YYYY hh:mm'), 'MM/DD/YYYY') &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;AS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DateStamp&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;INLINE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[&lt;BR /&gt; DateTimeField&lt;BR /&gt; 12/3/2015 01:21 &lt;BR /&gt; 2/6/2014 00:23 &lt;BR /&gt; 3/11/2015 00:18 &lt;BR /&gt; ]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2018 19:27:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23067#M776222</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-04-26T19:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: 1 field in 2 columns Load?</title>
      <link>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23068#M776223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Always a good idea to add Floor and Frac (like &lt;A href="https://community.qlik.com/people/sasiparupudi1"&gt;sasiparupudi1&lt;/A&gt;‌ added) because if you don't you will see repeating values in a list box for DateStamp and TimeStamp and you will wonder what is wrong. The problem is that Date() and TimeStamp() function are just formatting functions, they will make your field look like date and time, but if the underlying value is a date and time field.. you will see multiple dates repeating because they have different time values... similarly the same will be the case for Time...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2018 19:36:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23068#M776223</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-04-26T19:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: 1 field in 2 columns Load?</title>
      <link>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23069#M776224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fair points. Got it Sunny. Thanks for mentioning that. I thought Timestamp# and Date# would take care of that. Will they not?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2018 19:56:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23069#M776224</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-04-26T19:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: 1 field in 2 columns Load?</title>
      <link>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23070#M776225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nope they won't in this case... the expression will have to be how &lt;A href="https://community.qlik.com/people/shiveshsingh"&gt;shiveshsingh&lt;/A&gt;‌ did in that case&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2018 21:04:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23070#M776225</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-04-26T21:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: 1 field in 2 columns Load?</title>
      <link>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23071#M776226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Got it. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2018 21:07:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23071#M776226</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-04-26T21:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: 1 field in 2 columns Load?</title>
      <link>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23072#M776227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you ver much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2018 10:59:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23072#M776227</guid>
      <dc:creator>tomcatxx</dc:creator>
      <dc:date>2018-04-27T10:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: 1 field in 2 columns Load?</title>
      <link>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23073#M776228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, u are right. If I use Date() or TimeStamp() to get 2 columns, 'Date' and 'Time' looks like only date and time. But value of 'Date' contains also date and time. If u look value of 'Date', u get that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="font-size: 8pt;"&gt;MinMax:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;Load&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;min&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Date&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;minDate&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;max&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Date&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;maxDate&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Resident&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Table; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;-----------------------------------------------&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;MinMax:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;minDate&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; maxDate&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;42079,521455158&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 42072,995261815&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;So I cant use 'Date' to make a master Calendar. I think that&amp;nbsp; SubField(Time,' ',1) as Date is better.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2018 11:22:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23073#M776228</guid>
      <dc:creator>tomcatxx</dc:creator>
      <dc:date>2018-04-27T11:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: 1 field in 2 columns Load?</title>
      <link>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23074#M776230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you. It works.&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2018 11:24:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23074#M776230</guid>
      <dc:creator>tomcatxx</dc:creator>
      <dc:date>2018-04-27T11:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: 1 field in 2 columns Load?</title>
      <link>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23075#M776232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you can truncate the time component (the decimal) by using Floor() function in your main fact table&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Date(Floor(Date)) as Date&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly, you can use Frac to remove the Date from your timestamp&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Time(Frac(Date)) as Time&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2018 11:26:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23075#M776232</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-04-27T11:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: 1 field in 2 columns Load?</title>
      <link>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23076#M776235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cool, it works.The value is also date format now. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2018 11:41:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23076#M776235</guid>
      <dc:creator>tomcatxx</dc:creator>
      <dc:date>2018-04-27T11:41:18Z</dc:date>
    </item>
    <item>
      <title>Re: 1 field in 2 columns Load?</title>
      <link>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23077#M776237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Awesome &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2018 11:43:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/1-field-in-2-columns-Load/m-p/23077#M776237</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-04-27T11:43:11Z</dc:date>
    </item>
  </channel>
</rss>

