<?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: Regarding condition in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Regarding-condition/m-p/804264#M283963</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks van de goor.....great solution working fine now as expected ......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sarfaraz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Feb 2015 14:40:41 GMT</pubDate>
    <dc:creator>sarfaraz_sheikh</dc:creator>
    <dc:date>2015-02-13T14:40:41Z</dc:date>
    <item>
      <title>Regarding condition</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-condition/m-p/804261#M283960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whats wrong i am doing in below expression.. always the control is going in else part ...the condition found false everytime..&lt;/P&gt;&lt;P&gt;what i needs to do for condition being true. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(if(CREATE_DATE&amp;gt;=20150114,OPS_INWD_RECEIEVE_DATE,CREATE_DATE),'YYYYMMDD') AS Create_Date_Originl&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(if(CREATE_DATE&amp;gt;='20150114',OPS_INWD_RECEIEVE_DATE,CREATE_DATE),'YYYYMMDD') AS Create_Date_Originl&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sarfaraz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2015 13:56:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-condition/m-p/804261#M283960</guid>
      <dc:creator>sarfaraz_sheikh</dc:creator>
      <dc:date>2015-02-13T13:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding condition</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-condition/m-p/804262#M283961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;CREATE_DATE&amp;gt;=20150114&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;This part should be formatted as date because it's compared with a field that is defined as date (i presume) &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;OPS_INWD_RECEIEVE_DATE.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;20150114 is a number.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;date(date#('20150114', 'YYYYMMDD'), 'MM-DD-YYYY') or your default date format&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2015 13:59:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-condition/m-p/804262#M283961</guid>
      <dc:creator>Michiel_QV_Fan</dc:creator>
      <dc:date>2015-02-13T13:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding condition</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-condition/m-p/804263#M283962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;It depends on your date format, but I think you should use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(if(date(CREATE_DATE)&amp;gt;=date('14/01/2015'),OPS_INWD_RECEIEVE_DATE,CREATE_DATE),'YYYYMMDD') AS Create_Date_Originl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2015 14:38:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-condition/m-p/804263#M283962</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-13T14:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding condition</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-condition/m-p/804264#M283963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks van de goor.....great solution working fine now as expected ......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sarfaraz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2015 14:40:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-condition/m-p/804264#M283963</guid>
      <dc:creator>sarfaraz_sheikh</dc:creator>
      <dc:date>2015-02-13T14:40:41Z</dc:date>
    </item>
  </channel>
</rss>

