<?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: comparison the dates (Timestamp e Today) in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/comparison-the-dates-Timestamp-e-Today/m-p/1328990#M28945</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;both the field are numbers so you should be able to compare them &lt;/P&gt;&lt;P&gt;maybe try converting both to numbers using num() function&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 May 2017 17:52:45 GMT</pubDate>
    <dc:creator>lironbaram</dc:creator>
    <dc:date>2017-05-11T17:52:45Z</dc:date>
    <item>
      <title>comparison the dates (Timestamp e Today)</title>
      <link>https://community.qlik.com/t5/App-Development/comparison-the-dates-Timestamp-e-Today/m-p/1328989#M28944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good afternoon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm performing an incremental extraction in my database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For it, I'm comparing a field of type timestamp with the function Today (), but this does not work, only it brings the fields nulls, if use a field of type Date, it work. I need use the timestamp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How could comparate timestamp with the function Today()?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 May 2017 14:34:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/comparison-the-dates-Timestamp-e-Today/m-p/1328989#M28944</guid>
      <dc:creator />
      <dc:date>2017-05-11T14:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: comparison the dates (Timestamp e Today)</title>
      <link>https://community.qlik.com/t5/App-Development/comparison-the-dates-Timestamp-e-Today/m-p/1328990#M28945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;both the field are numbers so you should be able to compare them &lt;/P&gt;&lt;P&gt;maybe try converting both to numbers using num() function&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 May 2017 17:52:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/comparison-the-dates-Timestamp-e-Today/m-p/1328990#M28945</guid>
      <dc:creator>lironbaram</dc:creator>
      <dc:date>2017-05-11T17:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: comparison the dates (Timestamp e Today)</title>
      <link>https://community.qlik.com/t5/App-Development/comparison-the-dates-Timestamp-e-Today/m-p/1328991#M28946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Liron, I can not convert because I'm doing this in SELECT ... FROM, and Qlik Sense does not recognize the Num () function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 May 2017 18:32:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/comparison-the-dates-Timestamp-e-Today/m-p/1328991#M28946</guid>
      <dc:creator />
      <dc:date>2017-05-11T18:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: comparison the dates (Timestamp e Today)</title>
      <link>https://community.qlik.com/t5/App-Development/comparison-the-dates-Timestamp-e-Today/m-p/1328992#M28947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;you can do preceding load above the Select and use Qlik functions&lt;/P&gt;&lt;P&gt;your script should look something like:&lt;/P&gt;&lt;P&gt;Load field,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; field1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;where ;&lt;/P&gt;&lt;P&gt;sql Select *&lt;/P&gt;&lt;P&gt;From;&lt;/P&gt;&lt;P&gt;because you don't use from in the upper section sense will use the table below as a source table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 May 2017 06:16:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/comparison-the-dates-Timestamp-e-Today/m-p/1328992#M28947</guid>
      <dc:creator>lironbaram</dc:creator>
      <dc:date>2017-05-14T06:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: comparison the dates (Timestamp e Today)</title>
      <link>https://community.qlik.com/t5/App-Development/comparison-the-dates-Timestamp-e-Today/m-p/1328993#M28948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I solved the problem creating a variable with "Timestamp(Today())" and in code SQL does "SELECT * FROM WHERE Field = '$(vDateEnd)'".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thak's.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 May 2017 19:58:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/comparison-the-dates-Timestamp-e-Today/m-p/1328993#M28948</guid>
      <dc:creator />
      <dc:date>2017-05-19T19:58:15Z</dc:date>
    </item>
  </channel>
</rss>

