<?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: Date Format not coming properly in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Date-Format-not-coming-properly/m-p/1767827#M719030</link>
    <description>&lt;P&gt;Thanks for your reply. it's working. same i have another doubts.&lt;/P&gt;&lt;DIV class="topic-subject-wrapper"&gt;&lt;DIV class="lia-message-subject lia-component-message-view-widget-subject"&gt;&lt;DIV class="MessageSubject"&gt;&lt;DIV class="lia-message-subject"&gt;Date count not coming properly for past 30 days from today&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="MessageInResponseTo lia-component-message-view-widget-in-response-to lia-component-in-response-to"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="lia-message-body lia-component-message-view-widget-body lia-component-body-signature-highlight-escalation lia-component-message-view-widget-body-signature-highlight-escalation"&gt;&lt;DIV class="lia-message-body-content"&gt;&lt;P&gt;EMP_RELIEVE_DATE&lt;BR /&gt;--------------------------&lt;BR /&gt;13/07/2020&lt;BR /&gt;24/07/2020&lt;BR /&gt;07/08/2020&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;=count(DISTINCT if((Date(EMP_RELIEVE_DATE,'DD/MM/YYYY') - Today() and Date(EMP_RELIEVE_DATE,'DD/MM/YYYY') - Today() &amp;gt; 20) ),EMP_RELIEVE_DATE))&lt;/P&gt;&lt;P&gt;i am getting count people who are relieving from today and past more than 30 days&lt;/P&gt;&lt;P&gt;I have 3 records in that count. but, I am getting "zero" count&lt;/P&gt;&lt;P&gt;what is the problem in the expressions.&lt;/P&gt;&lt;P&gt;=count(DISTINCT if((Date(EMP_RELIEVE_DATE,'DD/MM/YYYY') - Today() and Date(EMP_RELIEVE_DATE,'DD/MM/YYYY') - Today() &amp;gt; 30) ),EMP_RELIEVE_DATE))&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="topic-subject-wrapper"&gt;&lt;DIV class="lia-message-subject lia-component-message-view-widget-subject"&gt;&lt;DIV class="MessageSubject"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="lia-message-body lia-component-message-view-widget-body lia-component-body-signature-highlight-escalation lia-component-message-view-widget-body-signature-highlight-escalation"&gt;&lt;DIV class="lia-message-body-content"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Fri, 11 Dec 2020 07:49:01 GMT</pubDate>
    <dc:creator>saivina2920</dc:creator>
    <dc:date>2020-12-11T07:49:01Z</dc:date>
    <item>
      <title>Date Format not coming properly</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-not-coming-properly/m-p/1767548#M719026</link>
      <description>&lt;P&gt;I am using oracle database for back end.&lt;/P&gt;&lt;P&gt;storing the date value in "DATE" data type in oracle. for example : 28-AUG-20&lt;/P&gt;&lt;P&gt;while bringing the value in qlikview report, it will come as "08/28/2020 04:30:35 AM"&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I didn't format anywhere. but, still coming as&amp;nbsp;"08/28/2020 04:30:35 AM"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;below is the Qlikview Query for example i have used,&lt;/P&gt;&lt;P&gt;select nvl(EMP_JOIN_DATE,'') AS EMP_JOIN_DATE from table;&lt;/P&gt;&lt;P&gt;I want the format 28/08/2020 during the output in qlikview.&lt;/P&gt;&lt;P&gt;How to format inside the Qlik query from oracle DB...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 23:28:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-not-coming-properly/m-p/1767548#M719026</guid>
      <dc:creator>saivina2920</dc:creator>
      <dc:date>2024-11-15T23:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format not coming properly</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-not-coming-properly/m-p/1767576#M719027</link>
      <description>&lt;P&gt;you can try this way&amp;nbsp; &amp;nbsp;use before your sql statement in qlikview&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;load *,&lt;BR /&gt;date(date#(Yourdate,'MM/DD/YYYY hh:mm:ss TT'),'DD/MM/YYYY') as Newdate;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;select nvl(EMP_JOIN_DATE,'') AS EMP_JOIN_DATE from table;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 09:15:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-not-coming-properly/m-p/1767576#M719027</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2020-12-10T09:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format not coming properly</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-not-coming-properly/m-p/1767796#M719028</link>
      <description>&lt;P&gt;i tried below statement. but, coming only "-"(eiphen) symbol only.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Load date(date#(EMP_JOIN_DATE,'MM/DD/YYYY hh:mm:ss TT'),'DD/MM/YYYY') as EMP_JOIN_DATE;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How...??? pls. give some more clue...&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Dec 2020 06:27:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-not-coming-properly/m-p/1767796#M719028</guid>
      <dc:creator>saivina2920</dc:creator>
      <dc:date>2020-12-11T06:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format not coming properly</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-not-coming-properly/m-p/1767802#M719029</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SET TimestampFormat=''&lt;SPAN&gt;MM/DD/YYYY hh:mm:ss TT&lt;/SPAN&gt;';&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Now you can try this&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD ..&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;date(floor(&lt;SPAN&gt;EMP_JOIN_DATE&lt;/SPAN&gt;),'MM/DD/YYYY') as&lt;SPAN&gt; EMP_JOIN_DATE&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Dec 2020 06:50:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-not-coming-properly/m-p/1767802#M719029</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2020-12-11T06:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format not coming properly</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-not-coming-properly/m-p/1767827#M719030</link>
      <description>&lt;P&gt;Thanks for your reply. it's working. same i have another doubts.&lt;/P&gt;&lt;DIV class="topic-subject-wrapper"&gt;&lt;DIV class="lia-message-subject lia-component-message-view-widget-subject"&gt;&lt;DIV class="MessageSubject"&gt;&lt;DIV class="lia-message-subject"&gt;Date count not coming properly for past 30 days from today&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="MessageInResponseTo lia-component-message-view-widget-in-response-to lia-component-in-response-to"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="lia-message-body lia-component-message-view-widget-body lia-component-body-signature-highlight-escalation lia-component-message-view-widget-body-signature-highlight-escalation"&gt;&lt;DIV class="lia-message-body-content"&gt;&lt;P&gt;EMP_RELIEVE_DATE&lt;BR /&gt;--------------------------&lt;BR /&gt;13/07/2020&lt;BR /&gt;24/07/2020&lt;BR /&gt;07/08/2020&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;=count(DISTINCT if((Date(EMP_RELIEVE_DATE,'DD/MM/YYYY') - Today() and Date(EMP_RELIEVE_DATE,'DD/MM/YYYY') - Today() &amp;gt; 20) ),EMP_RELIEVE_DATE))&lt;/P&gt;&lt;P&gt;i am getting count people who are relieving from today and past more than 30 days&lt;/P&gt;&lt;P&gt;I have 3 records in that count. but, I am getting "zero" count&lt;/P&gt;&lt;P&gt;what is the problem in the expressions.&lt;/P&gt;&lt;P&gt;=count(DISTINCT if((Date(EMP_RELIEVE_DATE,'DD/MM/YYYY') - Today() and Date(EMP_RELIEVE_DATE,'DD/MM/YYYY') - Today() &amp;gt; 30) ),EMP_RELIEVE_DATE))&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="topic-subject-wrapper"&gt;&lt;DIV class="lia-message-subject lia-component-message-view-widget-subject"&gt;&lt;DIV class="MessageSubject"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="lia-message-body lia-component-message-view-widget-body lia-component-body-signature-highlight-escalation lia-component-message-view-widget-body-signature-highlight-escalation"&gt;&lt;DIV class="lia-message-body-content"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 11 Dec 2020 07:49:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-not-coming-properly/m-p/1767827#M719030</guid>
      <dc:creator>saivina2920</dc:creator>
      <dc:date>2020-12-11T07:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format not coming properly</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-not-coming-properly/m-p/1767848#M719031</link>
      <description>&lt;P&gt;Okay please close this thread.&amp;nbsp;&lt;/P&gt;&lt;P&gt;i replied in other query .&lt;/P&gt;</description>
      <pubDate>Fri, 11 Dec 2020 08:47:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-not-coming-properly/m-p/1767848#M719031</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2020-12-11T08:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format not coming properly</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-not-coming-properly/m-p/1767862#M719032</link>
      <description>&lt;P&gt;ok..thanks...&lt;/P&gt;</description>
      <pubDate>Fri, 11 Dec 2020 09:16:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-not-coming-properly/m-p/1767862#M719032</guid>
      <dc:creator>saivina2920</dc:creator>
      <dc:date>2020-12-11T09:16:55Z</dc:date>
    </item>
  </channel>
</rss>

