<?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: How to set condition based on unique values using 2 lookup columns? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106000#M767007</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;‌No problem. So I used inline based on the data provided. Share the actual script with original fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jul 2018 19:06:42 GMT</pubDate>
    <dc:creator>vishsaggi</dc:creator>
    <dc:date>2018-07-04T19:06:42Z</dc:date>
    <item>
      <title>How to set condition based on unique values using 2 lookup columns?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/105996#M767003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good Day,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I please need assistance,&lt;/P&gt;&lt;P&gt;I wish to return either the Value 'R', or 'NR'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The File column has many unique values, and is accompanied by ALL with only 2 possible values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To paint the picture, I want the dimension to tell me if the &lt;STRONG&gt;whole&lt;/STRONG&gt; file is 'R' for ready, or 'NR' for not ready.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If &lt;STRONG&gt;all&lt;/STRONG&gt; fields are populated with 'R', then the file is ready, but if just 1 'NR' is displayed on that specific file, then it must populate all fields to 'NR'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***Remember, this must be done on a file level, so the fx must perform it's task per file and not on the entire column.***&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Screenshot:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="File R or NR.png" class="jive-image image-1" src="/legacyfs/online/206835_File R or NR.png" style="width: 620px; height: 371px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/105996#M767003</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to set condition based on unique values using 2 lookup columns?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/105997#M767004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;can you attach the qvw?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2018 16:42:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/105997#M767004</guid>
      <dc:creator>marcelviegas</dc:creator>
      <dc:date>2018-07-03T16:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to set condition based on unique values using 2 lookup columns?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/105998#M767005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if this is what you are looking for just using your own data modify your script like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;File:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;File, ALL&lt;/P&gt;&lt;P&gt;CSE571, R&lt;/P&gt;&lt;P&gt;CSE571, NR&lt;/P&gt;&lt;P&gt;CSE569, R&lt;/P&gt;&lt;P&gt;CSE869, R&lt;/P&gt;&lt;P&gt;CSE869, NR&lt;/P&gt;&lt;P&gt;CSE869, NR&lt;/P&gt;&lt;P&gt;CSE1806, R&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Join(File)&lt;/P&gt;&lt;P&gt;Final:&lt;/P&gt;&lt;P&gt;LOAD File,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Count(IF(MATCH(ALL,'NR'),1,0)) AS NewAll&lt;/P&gt;&lt;P&gt;Resident File&lt;/P&gt;&lt;P&gt;Group By File;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Final:&lt;/P&gt;&lt;P&gt;LOAD File, NewAll, IF(NewAll &amp;gt; 1, 'NR', ALL) As ALL&lt;/P&gt;&lt;P&gt;Resident File;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table File;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2018 16:53:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/105998#M767005</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-07-03T16:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to set condition based on unique values using 2 lookup columns?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/105999#M767006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishwarath,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you, apologies, you may have to be patient with me..&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I am working on Qlik sense, but the scripts are the same, no?&lt;/LI&gt;&lt;LI&gt;My sql table has over 400,000 rows (file number(s) breakdowns)&lt;/LI&gt;&lt;LI&gt;I have not used a load inline table before, the data entered is manual for it? is the following not automatically generated? &lt;BR /&gt;&lt;P&gt;"CSE571, R&lt;/P&gt;&lt;P&gt;CSE571, NR&lt;/P&gt;&lt;P&gt;CSE569, R&lt;/P&gt;&lt;P&gt;CSE869, R&lt;/P&gt;&lt;P&gt;CSE869, NR&lt;/P&gt;&lt;P&gt;CSE869, NR&lt;/P&gt;&lt;P&gt;CSE1806, R"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The correct name for 'File' Column is 'FILE_REF'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;If there no way for me to directly attach the qvf to this forum?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2018 09:28:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/105999#M767006</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-04T09:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to set condition based on unique values using 2 lookup columns?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106000#M767007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;‌No problem. So I used inline based on the data provided. Share the actual script with original fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2018 19:06:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106000#M767007</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-07-04T19:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to set condition based on unique values using 2 lookup columns?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106001#M767008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please find attached requested &lt;A href="https://community.qlik.com/qlik-users/98547"&gt;vishsaggi&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2018 14:48:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106001#M767008</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-05T14:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to set condition based on unique values using 2 lookup columns?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106002#M767009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK i have the script, so here FILE_REF is the correct field so what is the field name for ALL in your SQL SELECT script is it FILE_TYPE or REFERENCE. I mean where you have the Values R and NR, I need the field name. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2018 20:04:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106002#M767009</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-07-05T20:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to set condition based on unique values using 2 lookup columns?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106003#M767010</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;So the ALL column is actually I dimension I added to the sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="ALL Dimension.png" class="jive-image image-1" height="219" src="/legacyfs/online/207141_ALL Dimension.png" style="width: 565.75px; height: 219px;" width="566" /&gt;&lt;/P&gt;&lt;P&gt;It has it's own script and does &lt;STRONG&gt;not&lt;/STRONG&gt; form part of the sql table's raw data,&lt;/P&gt;&lt;P&gt;You are welcome to rename it to something else if that makes it easier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trust this clarifies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2018 07:02:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106003#M767010</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-06T07:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to set condition based on unique values using 2 lookup columns?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106004#M767012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok. I will look into it later in the evening. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2018 17:43:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106004#M767012</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-07-06T17:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to set condition based on unique values using 2 lookup columns?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106005#M767015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/168294"&gt;marcelviegas&lt;/A&gt;‌&lt;A href="https://community.qlik.com/qlik-users/98547"&gt;vishsaggi&lt;/A&gt;‌ you good today?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any Luck?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would appreciate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2018 07:24:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106005#M767015</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-10T07:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to set condition based on unique values using 2 lookup columns?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106006#M767017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;I believe that the correct logic is Vishwarath Nagaraju made the 3rd comment.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;try to study this method:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;table_in_use&lt;/SPAN&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;load File,All&lt;/P&gt;&lt;P&gt;resident table_in_use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left join&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD File,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Count(IF(MATCH(ALL,'NR'),1,0)) AS NewAll&lt;/P&gt;&lt;P&gt;Resident table_in_use&lt;/P&gt;&lt;P&gt;Group By File&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;noconcatenate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;final_table:&lt;/P&gt;&lt;P&gt;LOAD File,IF(NewAll &amp;gt; 0, 'NR', R) As ALL&lt;/P&gt;&lt;P&gt;Resident &lt;SPAN style="font-size: 13.3333px;"&gt;table_in_use&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;drop table &lt;SPAN style="font-size: 13.3333px;"&gt;table_in_use&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2018 12:22:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106006#M767017</guid>
      <dc:creator>marcelviegas</dc:creator>
      <dc:date>2018-07-10T12:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to set condition based on unique values using 2 lookup columns?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106007#M767019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Marcel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would you mind downloading the qvf I attached previously and incorporate the code as you have shown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the quickest way for me to grasp this is to see the finished result and learn from there/make further amendments to my dimensions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2018 13:08:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106007#M767019</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-10T13:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to set condition based on unique values using 2 lookup columns?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106008#M767020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;Sorry, I can not help you, I'm without qlik_sense installed on my computer, only qlikview.&lt;BR /&gt;if you want to send me the script in txt I set it for you.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2018 14:21:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106008#M767020</guid>
      <dc:creator>marcelviegas</dc:creator>
      <dc:date>2018-07-10T14:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to set condition based on unique values using 2 lookup columns?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106009#M767021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will look into this in the evening. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2018 18:44:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106009#M767021</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-07-10T18:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to set condition based on unique values using 2 lookup columns?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106010#M767022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/98547"&gt;vishsaggi&lt;/A&gt;‌&lt;A href="https://community.qlik.com/qlik-users/168294"&gt;marcelviegas&lt;/A&gt;‌ thanks for the effort you guys are putting in to assist me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2018 06:50:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106010#M767022</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-11T06:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to set condition based on unique values using 2 lookup columns?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106011#M767023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So sorry, completely got skipped to look into this. Can you remind me tomorrow please. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2018 03:33:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106011#M767023</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-07-12T03:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to set condition based on unique values using 2 lookup columns?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106012#M767024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/98547"&gt;vishsaggi&lt;/A&gt;‌&lt;A href="https://community.qlik.com/qlik-users/168294"&gt;marcelviegas&lt;/A&gt;‌ Thanks guys, played around abit more with the script you guys sent and I managed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, keep well&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2018 09:03:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-condition-based-on-unique-values-using-2-lookup/m-p/106012#M767024</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-13T09:03:18Z</dc:date>
    </item>
  </channel>
</rss>

