<?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# joining two fields to create a timestamp in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763676#M1027411</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bill - no these are just plain text fields - interested in understanding the use of the now() function though - why have you used this??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 21 Feb 2015 10:01:19 GMT</pubDate>
    <dc:creator>andy_smith2005</dc:creator>
    <dc:date>2015-02-21T10:01:19Z</dc:date>
    <item>
      <title>Timestamp# joining two fields to create a timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763671#M1027406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a series of text files delimited by white space something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;16/01/15 20:45:56&lt;/P&gt;&lt;P&gt;16/01/15 21:50:13&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to join the two fields together to create a timestamp field from which I can build an incremental load strategy/script. I have tried various things using date,num,timestamp,timestamp#,makedate#floor and the most I achieve is either a string of data which qlikview will only recognise as a string and not a timestamp, or a number which Qlikview doesnt recognise as a date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone got any ideas??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Feb 2015 09:29:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763671#M1027406</guid>
      <dc:creator>andy_smith2005</dc:creator>
      <dc:date>2015-02-21T09:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp# joining two fields to create a timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763672#M1027407</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;this should work. Try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;timestamp#(Field1&amp;amp;' '&amp;amp;Field2,'DD/MM/YY hh:mm:ss')&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;Kind regards,&lt;/P&gt;&lt;P&gt;Nuno&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Feb 2015 09:46:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763672#M1027407</guid>
      <dc:creator />
      <dc:date>2015-02-21T09:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp# joining two fields to create a timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763673#M1027408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Timestamp(Timestamp#(your_field_name, 'DD/MM/YY hh:mm:ss')) as timestamp_field_name&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Feb 2015 09:53:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763673#M1027408</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2015-02-21T09:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp# joining two fields to create a timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763674#M1027409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It depends what format your fields are, may be something like this if they are true QlikView timestamps, then maybe something like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; text(now()) &amp;amp; '|' &amp;amp; text(now()-0.5)&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'll need to replace &lt;EM style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;now() &lt;/STRONG&gt;&lt;/EM&gt;and &lt;EM style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;now()-0.5 &lt;/STRONG&gt;&lt;/EM&gt;with your filed names.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Feb 2015 09:57:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763674#M1027409</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-21T09:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp# joining two fields to create a timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763675#M1027410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nuno - cheers matey that was just what I needed - I am sure that your solution was one of the combinations that I used previously, but I think where I was going wrong was in the format area of the expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;many thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Feb 2015 09:58:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763675#M1027410</guid>
      <dc:creator>andy_smith2005</dc:creator>
      <dc:date>2015-02-21T09:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp# joining two fields to create a timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763676#M1027411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bill - no these are just plain text fields - interested in understanding the use of the now() function though - why have you used this??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Feb 2015 10:01:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763676#M1027411</guid>
      <dc:creator>andy_smith2005</dc:creator>
      <dc:date>2015-02-21T10:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp# joining two fields to create a timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763677#M1027412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks Colin but that won't join the two fields together as far as I can see , though I could just be a doughnut!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Feb 2015 10:02:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763677#M1027412</guid>
      <dc:creator>andy_smith2005</dc:creator>
      <dc:date>2015-02-21T10:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp# joining two fields to create a timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763678#M1027413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;now() simply returns the timestamp of now.&amp;nbsp; I find it useful for testing expressions using date &amp;amp; time functions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Feb 2015 10:03:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763678#M1027413</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-21T10:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp# joining two fields to create a timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763679#M1027414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;read rhis&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-3102"&gt;QlikView Date fields&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and/or see image for expression to convert your string (I used &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;16/01/15 20:45:56)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.jpg" class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/78703_1.jpg" style="height: 279px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Feb 2015 10:22:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763679#M1027414</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-02-21T10:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp# joining two fields to create a timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763680#M1027415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to create a Time stamp out of to fields i.e. Date and Time... Simply add them... &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example: &lt;STRONG&gt;Load Datefield+Timefield as Timestamp&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nitesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Feb 2015 10:24:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763680#M1027415</guid>
      <dc:creator />
      <dc:date>2015-02-21T10:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp# joining two fields to create a timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763681#M1027416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh Nitesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did that ever help. You just solved what my reading all morning did not!!&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2016 18:30:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Timestamp-joining-two-fields-to-create-a-timestamp/m-p/763681#M1027416</guid>
      <dc:creator>jfadderholdt</dc:creator>
      <dc:date>2016-03-16T18:30:50Z</dc:date>
    </item>
  </channel>
</rss>

