<?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 OR Operator between List Boxes in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185906#M50226</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;(See file in attach for three options)&lt;/P&gt;&lt;P&gt;I think that we have had a misunderstanding about the end-result.&lt;/P&gt;&lt;P&gt;Until now I understood:&lt;/P&gt;&lt;P&gt;if Location1 is selected OR if Designation1 is selected, then show the record&lt;/P&gt;&lt;P&gt;where "nothing clicked in a list" is interpreted as nothing de-selected, so "everything selected"&lt;/P&gt;&lt;P&gt;I assume that you want that to mean "nothing selected"&lt;/P&gt;&lt;P&gt;Possible via this formula:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;=if(&lt;BR /&gt;if(isnull(GetFieldSelections(Designation1)),'&amp;lt;no match',Designation1)=Designation OR&lt;BR /&gt;if(isnull(GetFieldSelections(Location1)),'&amp;lt;no match',Location1)=Location,&lt;BR /&gt;Location)&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;GetFieldSelections(...) is Null() if nothing selected, else a list of the selected items&lt;/P&gt;&lt;P&gt;So if nothing is select I compare Designation with string "&amp;lt;no match&amp;gt;" &amp;gt; to avoid a match; if something is selected, I compare Designation1 with Designation.&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;Piet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Mar 2010 14:37:50 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-03-22T14:37:50Z</dc:date>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185895#M50215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to implement OR between two list box?&lt;/P&gt;&lt;P&gt;Say for example:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;List Box1:&lt;/STRONG&gt; 1 2 3&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;List Box2:&lt;/STRONG&gt; A B C&lt;/P&gt;&lt;P&gt;and let &lt;STRONG&gt;Table Box&lt;/STRONG&gt; which shows the records of corresponding selections made in List Box1 and List Box2.&lt;/P&gt;&lt;P&gt;By default, List Boxs narrow down the result using AND operation.&lt;/P&gt;&lt;P&gt;This is where my question arises.&lt;/P&gt;&lt;P&gt;Is it possible to implement OR between two list box?&lt;/P&gt;&lt;P&gt;Advance Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Mar 2010 10:11:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185895#M50215</guid>
      <dc:creator>prabhu0505</dc:creator>
      <dc:date>2010-03-18T10:11:53Z</dc:date>
    </item>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185896#M50216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Option:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since the fields are linked, you cannot do a simple direct OR.&lt;/P&gt;&lt;P&gt;But this is a possible workaround.&lt;/P&gt;&lt;P&gt;Assume, we have a table with 2 fields, we import it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;B&gt;FieldA&lt;/B&gt;,&lt;/P&gt;&lt;P&gt;&lt;B&gt;FieldB&lt;/B&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;C:\Data\QV_2.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Blad1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now we need a fully independent list of distinct FieldA values and of distinct FieldB values; we'll select from those:&lt;/P&gt;&lt;P&gt;For FieldB:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;B&gt;distinct FieldB AS FB&lt;/B&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;C:\Data\QV_2.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Blad1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For FieldA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;B&gt;distinct FieldA&lt;/B&gt; &lt;B&gt;AS FA&lt;/B&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;C:\Data\QV_2.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Blad1);&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;Build a list box from &lt;B&gt;FA&lt;/B&gt; // you can name the listbox FieldA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Build a list box from &lt;B&gt;FB // ...&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Build a &lt;B&gt;chart&lt;/B&gt; (not a table):&lt;/P&gt;&lt;P&gt;select "straight table" type&lt;/P&gt;&lt;P&gt;add dimensions&lt;/P&gt;&lt;P&gt;&lt;B&gt;=if(isnull(FA) or FA=FieldA or isnull(FB) or FieldB=FB,FieldA)&lt;/B&gt; // enter "FieldA" as the name&lt;/P&gt;&lt;P&gt;&lt;B&gt;=if(isnull(FA) or FA=FieldA or isnull(FB) or FieldB=FB,FieldB)&lt;/B&gt; // enter "FieldB" as the name&lt;/P&gt;&lt;P&gt;PS: you need the "isnull(FA)" part for if nothing is selected in the list box for FA; i.e. all values are OK&lt;/P&gt;&lt;P&gt;the FA=FieldA part for actual selections; only selected values are OK; etc&lt;/P&gt;&lt;P&gt;add an expression - &lt;I&gt;you need one&lt;/I&gt;... e.g&lt;/P&gt;&lt;P&gt;&lt;B&gt;'OR'&lt;/B&gt; // name it Dummy or such, you can set the column width to 0&lt;/P&gt;&lt;P&gt;That's it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;Piet&lt;/P&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Mar 2010 18:30:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185896#M50216</guid>
      <dc:creator />
      <dc:date>2010-03-18T18:30:45Z</dc:date>
    </item>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185897#M50217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&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;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&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;BR /&gt;&lt;BR /&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;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&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;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P style="font-style: italic"&gt;&lt;/P&gt;&lt;P style="font-style: italic"&gt;Hi Piet,&lt;/P&gt;&lt;P style="font-style: italic"&gt;Thanks..&lt;/P&gt;&lt;P style="font-style: italic"&gt;Load Script :&lt;/P&gt;&lt;P style="font-style: italic"&gt;----------------&lt;/P&gt;&lt;P style="font-style: italic"&gt;Directory;&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;LOAD&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;#, &lt;P&gt;ID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;Name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;[How Recruited?]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;Designation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;DOB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;Horizontal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;Onsite&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;Vnet&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;[Contact #]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;Allocated&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;Billed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;[Billing %]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;[Client Email],&lt;/P&gt;&lt;P&gt;[Personal Email]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;[Emp Start date]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;Location&lt;/P&gt;&lt;P&gt;&lt;B&gt;FROM&lt;/B&gt;&lt;/P&gt;&lt;P&gt;[DW Model From Sar1.xlsx]&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;ooxml, embedded labels, table is Associate);&lt;/P&gt;&lt;I&gt;&lt;/I&gt;&lt;P style="font-style: italic"&gt;&lt;/P&gt;&lt;P style="font-style: italic"&gt;&lt;/P&gt;&lt;P style="font-style: italic"&gt;DesignationTab:&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;I&gt;&lt;/I&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;Load&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;Distinct&lt;/B&gt;&lt;BR /&gt;&lt;BR /&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;Designation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;as&lt;/B&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Designation1&lt;/P&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;from&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&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;BR /&gt;&lt;BR /&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;[DW Model From Sar1.xlsx]&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;ooxml, embedded labels, table is Associate)&lt;BR /&gt;&lt;BR /&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;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P style="font-style: italic"&gt;&lt;/P&gt;&lt;P style="font-style: italic"&gt;LocationTab:&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;Load&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;Distinct&lt;/B&gt;&lt;BR /&gt;&lt;BR /&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;Location&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;as&lt;/B&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Location1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;from&lt;/P&gt;&lt;P&gt;[DW Model From Sar1.xlsx]&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;ooxml, embedded labels, table is Associate)&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;Straight table (Calculated Dimensions) :&lt;/P&gt;&lt;P&gt;-------------------------------------------------------&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(isnull(Location1) or Location1=Location or isnull(Designation1) or Designation=Designation1,Location)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(isnull(Location1) or Location1=Location or isnull(Designation1) or Designation=Designation1,Designation)&lt;/P&gt;&lt;P&gt;---------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;And also I've added an expression to straight table sum(0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But still it is not working. Can you please help?&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Mar 2010 05:14:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185897#M50217</guid>
      <dc:creator>prabhu0505</dc:creator>
      <dc:date>2010-03-19T05:14:25Z</dc:date>
    </item>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185898#M50218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for the previous post.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Hi Piet,&lt;/P&gt;&lt;P&gt;Thanks..&lt;/P&gt;&lt;P&gt;Load Script :&lt;/P&gt;&lt;P&gt;----------------&lt;/P&gt;&lt;P&gt;Directory;&lt;/P&gt;&lt;P&gt;LOAD #,&lt;BR /&gt;ID,&lt;BR /&gt;Name,&lt;BR /&gt;[How Recruited?],&lt;BR /&gt;Designation,&lt;BR /&gt;DOB,&lt;BR /&gt;Horizontal,&lt;BR /&gt;Onsite,&lt;BR /&gt;Vnet,&lt;BR /&gt;[Contact #],&lt;BR /&gt;Allocated,&lt;BR /&gt;Billed,&lt;BR /&gt;[Billing %],&lt;BR /&gt;[Client Email],&lt;BR /&gt;[Personal Email],&lt;BR /&gt;[Emp Start date],&lt;BR /&gt;Location&lt;BR /&gt;FROM&lt;BR /&gt;[DW Model From Sar1.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Associate);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;DesignationTab:&lt;BR /&gt;Load Distinct&lt;BR /&gt;Designation&lt;BR /&gt;as&lt;BR /&gt;Designation1&lt;BR /&gt;from&lt;BR /&gt;[DW Model From Sar1.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Associate);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;LocationTab:&lt;BR /&gt;Load Distinct&lt;BR /&gt;Location&lt;BR /&gt; as&lt;BR /&gt;Location1&lt;BR /&gt;from&lt;BR /&gt;[DW Model From Sar1.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Associate);&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;Straight table (Calculated Dimensions) :&lt;/P&gt;&lt;P&gt;-------------------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(isnull(Location1) or Location1=Location or isnull(Designation1) or Designation=Designation1,Location)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;=if(isnull(Location1) or Location1=Location or isnull(Designation1) or Designation=Designation1,Designation)&lt;/P&gt;&lt;P&gt;---------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;And also I've added an expression to straight table sum(0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But still it is not working, data is not getting loaded in the straight table. Can you please help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Mar 2010 05:20:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185898#M50218</guid>
      <dc:creator>prabhu0505</dc:creator>
      <dc:date>2010-03-19T05:20:45Z</dc:date>
    </item>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185899#M50219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Saravana,&lt;/P&gt;&lt;P&gt;works like that, except for:&lt;/P&gt;&lt;P&gt;1) Sum(0) will return 0, and not show anything, unless you remove the "suppress zero values" from the "presentation" tab&lt;BR /&gt; 'OK' or 1 or sum(1) ... will work without that&lt;/P&gt;&lt;P&gt;2) Make sure that you have selected the 'straight table' and not a line chart or so&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;Piet&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Mar 2010 07:06:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185899#M50219</guid>
      <dc:creator />
      <dc:date>2010-03-19T07:06:44Z</dc:date>
    </item>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185900#M50220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Piet,&lt;/P&gt;&lt;P&gt;Yes as you said there is problem with my sum(0) expression, now data is getting loaded by removing the expression and unchecking suppress zero values.&lt;/P&gt;&lt;P&gt;But even now I'm facing a problem with the following expressions&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=if(isnull(Location1) or Location1=Location or isnull(Designation1) or Designation=Designation1,Location)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=if(isnull(Location1) or Location1=Location or isnull(Designation1) or Designation=Designation1,Designation)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;It is loading all possible combinations for each row.&lt;/P&gt;&lt;P&gt;I mean, say record 1 be,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Name&lt;/STRONG&gt; Designation Location&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Peter Manager Chennai&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;for this record,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Peter Manger Chennai&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Peter - Chennai&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Peter Manager -&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Peter - -&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;these many records are getting loaded&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Mar 2010 08:36:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185900#M50220</guid>
      <dc:creator>prabhu0505</dc:creator>
      <dc:date>2010-03-19T08:36:51Z</dc:date>
    </item>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185901#M50221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe I misunderstand what you really want to do?&lt;/P&gt;&lt;P&gt;See here a capture of what my method delivers:&lt;/P&gt;&lt;P&gt;Straight table chart "OR'ed" -&amp;gt; shows 1 record based on Designation1=32 selection; + 2 records based on the Location1 selection. So either (OR) selection yields records.&lt;/P&gt;&lt;P&gt;For reference I show the complete list below, so you can verify the result.&lt;/P&gt;&lt;P&gt;Piet&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/1643.CropperCapture_5B00_1_5D00_.Png"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/11/1643.CropperCapture_5B00_1_5D00_.Png" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Mar 2010 09:18:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185901#M50221</guid>
      <dc:creator />
      <dc:date>2010-03-19T09:18:55Z</dc:date>
    </item>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185902#M50222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thought of something else!&lt;/P&gt;&lt;P&gt;Make sure that you add "Name" and other fields as an Expression, and not as another Diemension!&lt;/P&gt;&lt;P&gt;Example OR'ed is OK, the one on the right has Name as extra dimension and is wrong&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/4478.CropperCapture_5B00_3_5D00_.Png"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/11/4478.CropperCapture_5B00_3_5D00_.Png" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Mar 2010 10:05:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185902#M50222</guid>
      <dc:creator />
      <dc:date>2010-03-19T10:05:27Z</dc:date>
    </item>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185903#M50223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Piet,&lt;/P&gt;&lt;P&gt;Thanks for your efforts.&lt;/P&gt;&lt;P&gt;In your previous post the records of the full list are unique according to designation1 and location1 this is where I'm facing problem.&lt;/P&gt;&lt;P&gt;Say your full list contains another two records like :&lt;/P&gt;&lt;P&gt;Designation location Name&lt;/P&gt;&lt;P&gt;3 3 F&lt;/P&gt;&lt;P&gt;3 3 G&lt;/P&gt;&lt;P&gt;Please add this to your list and try.&lt;/P&gt;&lt;P&gt;Eager to know the result.&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Mar 2010 16:27:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185903#M50223</guid>
      <dc:creator>prabhu0505</dc:creator>
      <dc:date>2010-03-20T16:27:59Z</dc:date>
    </item>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185904#M50224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;Well you are correct, doesn't work for multiples.&lt;BR /&gt;Solution:&lt;BR /&gt;Back to the initial design, but with an extra calculated dimension for Name:&lt;BR /&gt;Dimensions:&lt;BR /&gt;-&amp;gt; for location &amp;amp; designation as before&lt;BR /&gt;-&amp;gt; for name: =if(isnull(Location1) or Location1=Location or isnull(Designation1) or Designation=Designation1,Name)&lt;BR /&gt;Expression:&lt;BR /&gt;-&amp;gt; Back to 'OK', or the sum you had&lt;BR /&gt;&lt;BR /&gt;Small remark, it now shows an all Null/Null/Null/'OK' line in the list,&lt;BR /&gt;if you really do not want that, use the following expression instead:&lt;BR /&gt;Expression:&lt;BR /&gt; if(isnull(Designation) and isnull(Location) and isnull(Name),Null,'OR')&lt;BR /&gt; And re-enable "Suppress zero values" on the "presentation tab" !&lt;BR /&gt;Example result below:&lt;BR /&gt;Piet&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/2210.CropperCapture_5B00_5_5D00_.Png"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/11/2210.CropperCapture_5B00_5_5D00_.Png" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Mar 2010 18:37:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185904#M50224</guid>
      <dc:creator />
      <dc:date>2010-03-20T18:37:48Z</dc:date>
    </item>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185905#M50225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Piet,&lt;/P&gt;&lt;P&gt;It is working, if I have either selected both the list box or not, but for selection in one list box its not working.&lt;/P&gt;&lt;P&gt;Piet can you please explain me what the following expressions do:&lt;/P&gt;&lt;P&gt;(1) isnull(Location1)&lt;/P&gt;&lt;P&gt;(2) Location1=Location&lt;/P&gt;&lt;P&gt;I hope that I'm close to fix the problem.&lt;/P&gt;&lt;P&gt;Thanks for your continuos support.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Mar 2010 12:10:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185905#M50225</guid>
      <dc:creator>prabhu0505</dc:creator>
      <dc:date>2010-03-22T12:10:05Z</dc:date>
    </item>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185906#M50226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;(See file in attach for three options)&lt;/P&gt;&lt;P&gt;I think that we have had a misunderstanding about the end-result.&lt;/P&gt;&lt;P&gt;Until now I understood:&lt;/P&gt;&lt;P&gt;if Location1 is selected OR if Designation1 is selected, then show the record&lt;/P&gt;&lt;P&gt;where "nothing clicked in a list" is interpreted as nothing de-selected, so "everything selected"&lt;/P&gt;&lt;P&gt;I assume that you want that to mean "nothing selected"&lt;/P&gt;&lt;P&gt;Possible via this formula:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;=if(&lt;BR /&gt;if(isnull(GetFieldSelections(Designation1)),'&amp;lt;no match',Designation1)=Designation OR&lt;BR /&gt;if(isnull(GetFieldSelections(Location1)),'&amp;lt;no match',Location1)=Location,&lt;BR /&gt;Location)&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;GetFieldSelections(...) is Null() if nothing selected, else a list of the selected items&lt;/P&gt;&lt;P&gt;So if nothing is select I compare Designation with string "&amp;lt;no match&amp;gt;" &amp;gt; to avoid a match; if something is selected, I compare Designation1 with Designation.&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;Piet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Mar 2010 14:37:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185906#M50226</guid>
      <dc:creator />
      <dc:date>2010-03-22T14:37:50Z</dc:date>
    </item>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185907#M50227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Piet,&lt;/P&gt;&lt;P&gt;Finally I got what was expected by me. This is the expression that lead.&lt;/P&gt;&lt;P&gt;= if(if(isnull(GetFieldSelections(Designation1)),'&amp;lt;no match',Designation1)=Designation OR if(isnull(GetFieldSelections(Location1)),'&amp;lt;no match',Location1)=Location,Location, if(getselectedcount(Designation1)=0 and getselectedcount(Location1)=0, if(Not(isnull(Location1)) and Not(Location1=Location) and Not(isnull(Designation1)) and Not(Designation=Designation1),Location)))&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt; Piet can you please explain me what the following expressions do(from previous):&lt;/P&gt;&lt;P&gt;(1) isnull(Location1)&lt;/P&gt;&lt;P&gt;(2) Location1=Location&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Without you this wouldn't be possible, thanks alot for your continuous support.&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Mar 2010 13:49:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185907#M50227</guid>
      <dc:creator>prabhu0505</dc:creator>
      <dc:date>2010-03-23T13:49:57Z</dc:date>
    </item>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185908#M50228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, I'm also discovering a lot of this as I go...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(2) Location1=Location&lt;/P&gt;&lt;P&gt;~ if there is an intersection between group "selected Location1" and group "Location" ... add those Locations to the dimension set&lt;/P&gt;&lt;P&gt;(1) Not sure that is required if all the setting of "show/hide zero values" is ok&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe an option if you like to experiment:&lt;/P&gt;&lt;P&gt;I was working on something else when an other perhaps &lt;B&gt;more straightforward&lt;/B&gt; solution came to me:&lt;/P&gt;&lt;P&gt;(don't know if you have a registered copy of QV, if so see attach, else)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;Again a straight table, but with the main fields simply selected as dimensions, here:&lt;BR /&gt; // main fields are ProductType, Code, OrderID&lt;BR /&gt; // the extra OR selection values are ProductTypeOR and Code OR&lt;BR /&gt; dimension: ProductType&lt;BR /&gt; dimension: Code&lt;BR /&gt; calculated expression = using an assemble "like" expression between value &amp;amp; GetFieldSelections():&lt;BR /&gt; if(&lt;BR /&gt;&lt;BR /&gt; if(getselectedcount(ProductTypeOR)=0,'&amp;lt;nomatch&amp;gt;',GetFieldSelections(ProductTypeOR,' ',9999))&lt;BR /&gt; like ('*' &amp;amp; if(isnull(ProductType),'&amp;lt;no!match&amp;gt;',ProductType) &amp;amp; '*') OR&lt;BR /&gt; if(getselectedcount(CodeOR)=0,'&amp;lt;nomatch&amp;gt;',GetFieldSelections(CodeOR,' ',9999))&lt;BR /&gt; like ('*' &amp;amp; if(isnull(Code),'&amp;lt;no!match&amp;gt;',Code) &amp;amp; '*'),&lt;BR /&gt; OrderID)&lt;BR /&gt; // named as OrderID&lt;BR /&gt; // suppress zero values in presentation&lt;BR /&gt;&lt;BR /&gt;Optional:&lt;BR /&gt;Color codes for dimensions, eg, backgroup color for all ProductType selected in ProductType1:&lt;BR /&gt;&lt;BR /&gt; =if(&lt;BR /&gt; if(getselectedcount(ProductTypeOR)=0,'&amp;lt;nomatch&amp;gt;',GetFieldSelections(ProductTypeOR,' ',9999)) like ('*' &amp;amp; if(isnull(ProductType),'&amp;lt;no!match&amp;gt;',ProductType) &amp;amp; '*'),&lt;BR /&gt; rgb(180,220,255))&lt;BR /&gt;&lt;BR /&gt;Greetings,&lt;BR /&gt;Piet&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 18:52:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185908#M50228</guid>
      <dc:creator />
      <dc:date>2010-03-24T18:52:45Z</dc:date>
    </item>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185909#M50229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One way to handle an OR is obviously what has already been presented - create new fields with different names, then match those new fields back to the real fields using complicated expressions in the table.&lt;/P&gt;&lt;P&gt;Another way to handle the OR is attached. Create an OR table and allow QlikView's default logic to do all the heavy lifting in the charts. I'm guessing that this approach would be significantly faster for large data sets, where you only have a few fields you want to do the OR on, and only a few values for those fields. However, it can eat up a lot of memory for that performance in some cases, so certainly isn't the solution in all cases. It's just an alternative to consider.&lt;/P&gt;&lt;P&gt;As best I can tell from skimming the thread, it doesn't do exactly what you're asking for, such as it uses the default definition of no selections in a field, which is to assume that all values are allowed. But some adjustments from this might produce the results you want.&lt;/P&gt;&lt;P&gt;Probably not worth it if you have a solution that you're happy with. But I wanted the alternative to be out there for other people looking for old threads on the subject.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 19:30:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185909#M50229</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-03-24T19:30:26Z</dc:date>
    </item>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185910#M50230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;Can you make the example personal edition compatible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 05:40:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185910#M50230</guid>
      <dc:creator>prabhu0505</dc:creator>
      <dc:date>2010-03-25T05:40:57Z</dc:date>
    </item>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185911#M50231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;Saravana Prabhu wrote:Can you make the example personal edition compatible?&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;How do I make it personal edition compatible? I honestly don't know.&lt;/P&gt;&lt;P&gt;In the mean time, I'll copy the script below. Make list boxes for A, B and C. Create a table box with ID and OtherField. You might also want a table box with everything from the Raw Data table so that you can see what the results should be as you make selections.&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;[RawTable]:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;RawID, RawA, RawB, RawC, RawOtherField&lt;BR /&gt;1,Y,N,N,A&lt;BR /&gt;2,N,Y,N,B&lt;BR /&gt;3,Y,N,Y,C&lt;BR /&gt;4,Y,Y,Y,D&lt;BR /&gt;5,Y,N,N,E&lt;BR /&gt;6,N,N,N,F&lt;BR /&gt;7,Y,Y,Y,G&lt;BR /&gt;];&lt;BR /&gt;[MainTable]:&lt;BR /&gt;NOCONCATENATE&lt;BR /&gt;LOAD&lt;BR /&gt; RawID as ID&lt;BR /&gt;,RawOtherField as OtherField&lt;BR /&gt;RESIDENT [RawTable]&lt;BR /&gt;;&lt;BR /&gt;[OrTable]:&lt;BR /&gt;LOAD&lt;BR /&gt; RawID as ID&lt;BR /&gt;,RawA as A&lt;BR /&gt;RESIDENT [RawTable]&lt;BR /&gt;;&lt;BR /&gt;LEFT JOIN ([OrTable])&lt;BR /&gt;LOAD DISTINCT RawB as B&lt;BR /&gt;RESIDENT [RawTable]&lt;BR /&gt;;&lt;BR /&gt;LEFT JOIN ([OrTable])&lt;BR /&gt;LOAD DISTINCT RawC as C&lt;BR /&gt;RESIDENT [RawTable]&lt;BR /&gt;;&lt;BR /&gt;[OrTableB]:&lt;BR /&gt;NOCONCATENATE LOAD&lt;BR /&gt; RawID as ID&lt;BR /&gt;,RawB as B&lt;BR /&gt;RESIDENT [RawTable]&lt;BR /&gt;;&lt;BR /&gt;LEFT JOIN ([OrTableB])&lt;BR /&gt;LOAD DISTINCT RawA as A&lt;BR /&gt;RESIDENT [RawTable]&lt;BR /&gt;;&lt;BR /&gt;LEFT JOIN ([OrTableB])&lt;BR /&gt;LOAD DISTINCT RawC as C&lt;BR /&gt;RESIDENT [RawTable]&lt;BR /&gt;;&lt;BR /&gt;[OrTableC]:&lt;BR /&gt;NOCONCATENATE LOAD&lt;BR /&gt; RawID as ID&lt;BR /&gt;,RawC as C&lt;BR /&gt;RESIDENT [RawTable]&lt;BR /&gt;;&lt;BR /&gt;LEFT JOIN ([OrTableC])&lt;BR /&gt;LOAD DISTINCT RawA as A&lt;BR /&gt;RESIDENT [RawTable]&lt;BR /&gt;;&lt;BR /&gt;LEFT JOIN ([OrTableC])&lt;BR /&gt;LOAD DISTINCT RawB as B&lt;BR /&gt;RESIDENT [RawTable]&lt;BR /&gt;;&lt;BR /&gt;JOIN ([OrTable])&lt;BR /&gt;LOAD *&lt;BR /&gt;RESIDENT [OrTableB]&lt;BR /&gt;;&lt;BR /&gt;JOIN ([OrTable])&lt;BR /&gt;LOAD *&lt;BR /&gt;RESIDENT [OrTableC]&lt;BR /&gt;;&lt;BR /&gt;DROP TABLES&lt;BR /&gt; [OrTableB]&lt;BR /&gt;,[OrTableC]&lt;BR /&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 17:51:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185911#M50231</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-03-25T17:51:50Z</dc:date>
    </item>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185912#M50232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I posted an example awhile ago:&lt;BR /&gt;&lt;A href="http://community.qlik.com/media/p/81594.aspx"&gt;http://community.qlik.com/media/p/81594.aspx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 17:57:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185912#M50232</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-25T17:57:35Z</dc:date>
    </item>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185913#M50233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;I was engaged with some other work that is the reason for the delayed reply.&lt;/P&gt;&lt;P&gt;I tried to access your example and John's but unfortunately it is giving the errors.&lt;/P&gt;&lt;P&gt;The error statement is " The file contain inconsistencies and cannot be opened by Personal Edition".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prabhu&lt;IMG alt="" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Apr 2010 18:57:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185913#M50233</guid>
      <dc:creator>prabhu0505</dc:creator>
      <dc:date>2010-04-07T18:57:55Z</dc:date>
    </item>
    <item>
      <title>OR Operator between List Boxes</title>
      <link>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185914#M50234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Strange...&lt;BR /&gt;Ask QlikCommunity admin to fix this. They usually make the posted files compatible with Personal Edition.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Apr 2010 20:16:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OR-Operator-between-List-Boxes/m-p/185914#M50234</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-04-07T20:16:39Z</dc:date>
    </item>
  </channel>
</rss>

