<?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: CASE Statement while loading the data from the qvd in Visualization and Usability</title>
    <link>https://community.qlik.com/t5/Visualization-and-Usability/CASE-Statement-while-loading-the-data-from-the-qvd/m-p/2444162#M250412</link>
    <description>&lt;P&gt;Try this if you want as field name&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;if( raised_date &amp;lt; date('30-06-2016' ), date( 01-07-2016),&amp;nbsp; raised_date)&amp;nbsp; as RAISED_DATE_MIN&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 24 Apr 2024 06:05:15 GMT</pubDate>
    <dc:creator>Anil_Babu_Samineni</dc:creator>
    <dc:date>2024-04-24T06:05:15Z</dc:date>
    <item>
      <title>CASE Statement while loading the data from the qvd</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/CASE-Statement-while-loading-the-data-from-the-qvd/m-p/2444133#M250407</link>
      <description>&lt;P&gt;Hi There,&lt;/P&gt;
&lt;P&gt;I want to apply similar SQL case statement as below in the QVD while loading the data. Please guide me. Thanks.&lt;/P&gt;
&lt;P&gt;CASE&lt;BR /&gt;WHEN RAISED_DATE &amp;lt; TO_DATE('30-06-2016', 'DD-MM-YYYY') THEN TO_DATE('01-07-2016', 'DD-MM-YYYY')&lt;BR /&gt;ELSE RAISED_DATE&lt;/P&gt;
&lt;P&gt;END AS RAISED_DATE_MIN&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2024 04:04:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/CASE-Statement-while-loading-the-data-from-the-qvd/m-p/2444133#M250407</guid>
      <dc:creator>CK_WAKE</dc:creator>
      <dc:date>2024-04-24T04:04:06Z</dc:date>
    </item>
    <item>
      <title>Re: CASE Statement while loading the data from the qvd</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/CASE-Statement-while-loading-the-data-from-the-qvd/m-p/2444151#M250410</link>
      <description>&lt;P&gt;Perhaps this?&lt;/P&gt;
&lt;P&gt;Load * From &amp;lt;&amp;lt;Table&amp;gt;&amp;gt;&amp;nbsp;&lt;BR /&gt;Where RAISED_DATE &amp;gt; Date('30-06-2016', 'DD-MM-YYYY') and&amp;nbsp;RAISED_DATE &amp;lt;=Date('01-07-2016', 'DD-MM-YYYY');&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2024 05:29:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/CASE-Statement-while-loading-the-data-from-the-qvd/m-p/2444151#M250410</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2024-04-24T05:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: CASE Statement while loading the data from the qvd</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/CASE-Statement-while-loading-the-data-from-the-qvd/m-p/2444157#M250411</link>
      <description>&lt;P&gt;Hi Anil, Thanks for getting back.&lt;BR /&gt;I dont want to apply a data filter,&amp;nbsp; what i want to achieve is&lt;/P&gt;
&lt;P&gt;if raised_date &amp;lt; less than&amp;nbsp;&lt;SPAN&gt;'30-06-2016' , then input the date as 01-07-2016 otherwise keep the date of raised_date, and I am creating a new column as RAISED_DATE_MIN for this condition.&amp;nbsp; Let me know if i am not clear about this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;RAISED_DATE &amp;lt; TO_DATE('30-06-2016', 'DD-MM-YYYY') THEN TO_DATE('01-07-2016', 'DD-MM-YYYY')&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ELSE RAISED_DATE&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2024 05:46:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/CASE-Statement-while-loading-the-data-from-the-qvd/m-p/2444157#M250411</guid>
      <dc:creator>CK_WAKE</dc:creator>
      <dc:date>2024-04-24T05:46:21Z</dc:date>
    </item>
    <item>
      <title>Re: CASE Statement while loading the data from the qvd</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/CASE-Statement-while-loading-the-data-from-the-qvd/m-p/2444162#M250412</link>
      <description>&lt;P&gt;Try this if you want as field name&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;if( raised_date &amp;lt; date('30-06-2016' ), date( 01-07-2016),&amp;nbsp; raised_date)&amp;nbsp; as RAISED_DATE_MIN&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2024 06:05:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/CASE-Statement-while-loading-the-data-from-the-qvd/m-p/2444162#M250412</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2024-04-24T06:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: CASE Statement while loading the data from the qvd</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/CASE-Statement-while-loading-the-data-from-the-qvd/m-p/2444171#M250414</link>
      <description>&lt;P&gt;Thanks Anil, it worked. Cheers&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2024 06:25:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/CASE-Statement-while-loading-the-data-from-the-qvd/m-p/2444171#M250414</guid>
      <dc:creator>CK_WAKE</dc:creator>
      <dc:date>2024-04-24T06:25:37Z</dc:date>
    </item>
  </channel>
</rss>

