<?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 where condition in Script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/where-condition-in-Script/m-p/633542#M1087145</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SalesOrderDetail where SalesOrderID in&lt;/P&gt;&lt;P&gt;(select SalesOrderID from SalesOrderHeader where OrderDate &amp;gt;= '$(vFromDate)' and OrderDate&amp;lt;='$(vToDate)'); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This was written by usinf SQL, But i want Based on Load statement how can we write this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 May 2014 06:23:02 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-05-30T06:23:02Z</dc:date>
    <item>
      <title>where condition in Script</title>
      <link>https://community.qlik.com/t5/QlikView/where-condition-in-Script/m-p/633542#M1087145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SalesOrderDetail where SalesOrderID in&lt;/P&gt;&lt;P&gt;(select SalesOrderID from SalesOrderHeader where OrderDate &amp;gt;= '$(vFromDate)' and OrderDate&amp;lt;='$(vToDate)'); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This was written by usinf SQL, But i want Based on Load statement how can we write this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2014 06:23:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-condition-in-Script/m-p/633542#M1087145</guid>
      <dc:creator />
      <dc:date>2014-05-30T06:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: where condition in Script</title>
      <link>https://community.qlik.com/t5/QlikView/where-condition-in-Script/m-p/633543#M1087147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;SalesOrderDetail where OrderDate &amp;gt;= $(vFromDate) and OrderDate&amp;lt;=$(vToDate);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SELECT &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;SalesOrderDetail &lt;/SPAN&gt;, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;SalesOrderID &lt;/SPAN&gt; from &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;SalesOrderHeader ;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2014 06:28:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-condition-in-Script/m-p/633543#M1087147</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2014-05-30T06:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: where condition in Script</title>
      <link>https://community.qlik.com/t5/QlikView/where-condition-in-Script/m-p/633544#M1087148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load your table like the below load statement but join type like Left,Right,Inner,Outer depends on your requirement please use according to that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Qlikview&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_text_macro _jivemacro_uid_14014315391094765 jive_macro_code" jivemacro_uid="_14014315391094765"&gt;
&lt;P&gt;Load&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;SalesOrderID&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;From &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;SalesOrderDetail;&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;"&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;"&gt;Right Join&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;"&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;"&gt;Load&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;SalesOrderID&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;From &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;SalesOrderHeader&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;"&gt;Where &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;OrderDate &amp;gt;= '$(vFromDate)' and OrderDate &amp;lt;= '$(vToDate)';&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2014 06:29:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-condition-in-Script/m-p/633544#M1087148</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-05-30T06:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: where condition in Script</title>
      <link>https://community.qlik.com/t5/QlikView/where-condition-in-Script/m-p/633545#M1087149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The same query can be used in qv using SQL Select like:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SQL Select&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;SalesOrderDetail &lt;STRONG&gt;&amp;lt;From DB Source&amp;gt;&lt;/STRONG&gt; where SalesOrderID in&lt;/P&gt;&lt;P&gt;(select SalesOrderID from SalesOrderHeader where OrderDate &amp;gt;= '$(vFromDate)' and OrderDate&amp;lt;='$(vToDate)'); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming you have ODBC/OLEDB connection string is already there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2014 06:29:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-condition-in-Script/m-p/633545#M1087149</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-05-30T06:29:47Z</dc:date>
    </item>
  </channel>
</rss>

