<?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: How to convert datetime to time in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438734#M431897</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is wrong with the calendar object? I am not sure what you expect it to do and what is it doing?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Nov 2017 12:11:23 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2017-11-10T12:11:23Z</dc:date>
    <item>
      <title>How to convert datetime to time</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438727#M431890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;BR /&gt;I am making a Filter with Calendar Object from Date to Date.I use database(SQL).I don't have problem to insert field from database to Qlikview. I make in Qlikview one field with INVOICEDATE(Time)and two calendars object . When I choose from date like : 01.10.2016 to 01.11.2016 and Calendar doesn't work. I mean , that this is happening , because when i get field form database - field datatype is datetime. I tried with other field , which is only date and Calendar work correctly.My Question is how to convert or cast field in Script to datatype date.&lt;BR /&gt;&lt;IMG alt="InvoiceDate.JPG" class="jive-image image-1" height="163" src="https://community.qlik.com/legacyfs/online/182528_InvoiceDate.JPG" style="height: 163px; width: 100.533px; float: left;" width="101" /&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;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;/P&gt;&lt;P&gt;SELECT&lt;/P&gt;&lt;P&gt;INVOICEDATE(floor(Date)) as Date&lt;/P&gt;&lt;P&gt;FROM VENDINVOICEJOUR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is my qvw file . If someone can fix it and give it back to me.&lt;BR /&gt;Thank you .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2017 13:21:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438727#M431890</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-08T13:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert datetime to time</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438728#M431891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be try this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Date(Date#(Date, 'YYYY-MM-DD hh:mm:ss'), 'DD.MM.YYYY') AS InvoiceDate;&lt;/P&gt;&lt;P&gt;SELECT&lt;/P&gt;&lt;P&gt;INVOICEDATE as Date&lt;/P&gt;&lt;P&gt;FROM VENDINVOICEJOUR;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2017 16:33:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438728#M431891</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-11-08T16:33:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert datetime to time</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438729#M431892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Time(Frac(Date)) as Time,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TimeStamp(Date) as DateTime,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Date(Floor(Date)) as Date;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SELECT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;INVOICEDATE as Date&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM VENDINVOICEJOUR&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2017 16:35:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438729#M431892</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-11-08T16:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert datetime to time</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438730#M431893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may Use #Date(DataField,'DD.MM.YYYY')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2017 16:38:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438730#M431893</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-08T16:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert datetime to time</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438731#M431894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/171708"&gt;stalwar1&lt;/A&gt;‌ I am not sure , whether the code for script is right , because the calendar objects don't work. Can you review my prova.qvw file and tell me why ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 08:24:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438731#M431894</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-09T08:24:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert datetime to time</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438732#M431895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you rerun your file and attach is back&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD Time(Frac(Date)) as Time,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;TimeStamp(Date) as DateTime,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Date(Floor(Date)) as Date;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;SELECT&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;INVOICEDATE as Date&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;FROM VENDINVOICEJOUR&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2017 16:17:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438732#M431895</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-11-09T16:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert datetime to time</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438733#M431896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Code for script work correctly , but calendar objects not . Can you see my qlikview file and tell my why ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 09:17:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438733#M431896</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-10T09:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert datetime to time</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438734#M431897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is wrong with the calendar object? I am not sure what you expect it to do and what is it doing?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 12:11:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438734#M431897</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-11-10T12:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert datetime to time</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438735#M431898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For example :when i first choose from "FROM CALENDAR"&amp;nbsp; - 01/01/2017 select all date in field Datem (i think it is right to do that) and than when I select "TO CALENDAR" - 01/03/2017 doesn't select anything in Datem field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to set a date from ..... to....&amp;nbsp; . work only if it chose by default(last choose before exit the qlik) from to calendar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I make it with inpux box work correctly ? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 13:12:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438735#M431898</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-10T13:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert datetime to time</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438736#M431899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change these two settings in the environmental variables of your script and rerun to see if it works now&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/182858_Capture.PNG" style="height: 386px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 13:30:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438736#M431899</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-11-10T13:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert datetime to time</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438737#M431900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think it works. I will try to explain it in clearly.&lt;BR /&gt;&lt;IMG alt="first.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/182854_first.JPG" style="height: 248px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;Start file g.qvw that you sent me or my (does't matter who).Click on Calendar object "FROM" and select (01/01/2017) and after this action are selected all lines with date 2017...&amp;nbsp; for now it looks okei. If you look in Current Selections you will see that set value and from calendar object "TO" i think the problem is here ! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My task is when I start Qlik , first select in Calendar object"FROM" - &lt;SPAN style="font-size: 13.3333px;"&gt;(01/01/2017)&amp;nbsp; , second selecet in calendar object "TO" - (01/03/2017) and Field Datem looks like this :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;IMG alt="second.JPG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/182873_second.JPG" style="height: 310px; width: 620px;" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;And now Filed Datem select only 4 lines and work correctly but I make this from Input box...&lt;/P&gt;&lt;P&gt;Please look at it again . Why from inputbox work from calendars object not&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you &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, 10 Nov 2017 14:56:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438737#M431900</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-10T14:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert datetime to time</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438738#M431901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vladislav - I wanted you to reload the application with the new environmental variable settings that I sent you... you needed to test once you have reloaded... Anyways, I have attached a version of the application.... see if this works... (I had to do a binary load to fix the issue)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 15:02:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438738#M431901</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-11-10T15:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert datetime to time</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438739#M431902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now it is working , what do you make ?&lt;/P&gt;&lt;P&gt;The default SET in scripts are problem ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 15:18:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438739#M431902</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-10T15:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert datetime to time</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438740#M431903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, change the two set statements and reload&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 15:22:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438740#M431903</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-11-10T15:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert datetime to time</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438741#M431904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you tell me how to execute SQL query because it load only one filed .&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD Date(Floor(Date)) as Datem;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;SQL SELECT&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;VENDTABLE.ACCOUNTNUM,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;DIRPARTYTABLE.NAME,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;VENDINVOICEJOUR.INVOICEID,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;VENDINVOICEJOUR.INVOICEDATE AS Date,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;VENDINVOICEJOUR.INVOICEAMOUNT,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;VENDINVOICEJOUR.CURRENCYCODE&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FROM DIRPARTYTABLE&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;INNER JOIN VENDTABLE&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;ON DIRPARTYTABLE.RECID=VENDTABLE.PARTY&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;INNER JOIN VENDINVOICEJOUR&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;ON VENDINVOICEJOUR.INVOICEACCOUNT=VENDTABLE.ACCOUNTNUM &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;AND VENDINVOICEJOUR.DATAAREAID = VENDTABLE.DATAAREAID;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;IMG alt="f1.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/182878_f1.JPG" style="height: 486px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 15:40:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438741#M431904</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-10T15:40:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert datetime to time</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438742#M431905</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;STRONG&gt;LOAD &lt;SPAN style="color: #ff0000;"&gt;*,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Floor(Date)) as Datem;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SQL SELECT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;VENDTABLE.ACCOUNTNUM,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DIRPARTYTABLE.NAME,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;VENDINVOICEJOUR.INVOICEID,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;VENDINVOICEJOUR.INVOICEDATE AS Date,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;VENDINVOICEJOUR.INVOICEAMOUNT,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;VENDINVOICEJOUR.CURRENCYCODE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM DIRPARTYTABLE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;INNER JOIN VENDTABLE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ON DIRPARTYTABLE.RECID=VENDTABLE.PARTY&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;INNER JOIN VENDINVOICEJOUR&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ON VENDINVOICEJOUR.INVOICEACCOUNT=VENDTABLE.ACCOUNTNUM&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;AND VENDINVOICEJOUR.DATAAREAID = VENDTABLE.DATAAREAID;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 15:42:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438742#M431905</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-11-10T15:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert datetime to time</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438743#M431906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ahaaaaaaaaaaaaa &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/grin.png" /&gt; Thank you so much friend &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, 10 Nov 2017 15:44:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438743#M431906</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-10T15:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert datetime to time</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438744#M431907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No problem at all &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;Please close the thread by marking correct and helpful responses.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-14806"&gt;Qlik Community Tip: Marking Replies as Correct or Helpful&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 15:46:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-datetime-to-time/m-p/1438744#M431907</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-11-10T15:46:49Z</dc:date>
    </item>
  </channel>
</rss>

