<?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: Scenario Help in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/845740#M1009781</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;join both table or concatenate .&lt;/P&gt;&lt;P&gt;i am giving some idea regarding Concatenate&lt;/P&gt;&lt;P&gt;MAIN:&lt;/P&gt;&lt;P&gt;LOAD *, Cust as key1&lt;/P&gt;&lt;P&gt;from table1;&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;LOAD *,Cust as key2&lt;/P&gt;&lt;P&gt;from table 2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MAIN2:&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;if(key1&amp;lt;&amp;gt;key2,customersale) as flag&lt;/P&gt;&lt;P&gt;resident MAIN;&lt;/P&gt;&lt;P&gt;drop table MAIN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vimlesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Apr 2015 06:25:43 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-04-29T06:25:43Z</dc:date>
    <item>
      <title>Scenario Help</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/845739#M1009779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have two tables, table1 and table2..&lt;/P&gt;&lt;P&gt;in table1 i have customer key and table2 i have one more customer&amp;nbsp; key field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to compare where table1 customer1 in not equal to table 2 customer key and have to show sales.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how i can write expression at front end or backend.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2015 06:21:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/845739#M1009779</guid>
      <dc:creator>abhaysingh</dc:creator>
      <dc:date>2015-04-29T06:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario Help</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/845740#M1009781</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;join both table or concatenate .&lt;/P&gt;&lt;P&gt;i am giving some idea regarding Concatenate&lt;/P&gt;&lt;P&gt;MAIN:&lt;/P&gt;&lt;P&gt;LOAD *, Cust as key1&lt;/P&gt;&lt;P&gt;from table1;&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;LOAD *,Cust as key2&lt;/P&gt;&lt;P&gt;from table 2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MAIN2:&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;if(key1&amp;lt;&amp;gt;key2,customersale) as flag&lt;/P&gt;&lt;P&gt;resident MAIN;&lt;/P&gt;&lt;P&gt;drop table MAIN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vimlesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2015 06:25:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/845740#M1009781</guid>
      <dc:creator />
      <dc:date>2015-04-29T06:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario Help</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/845741#M1009782</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;In script ,&lt;/P&gt;&lt;P&gt;You can acheive it using &lt;STRONG&gt;not exist()&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MAIN:&lt;/P&gt;&lt;P&gt;LOAD *, Cust as key1&lt;/P&gt;&lt;P&gt;from table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table2:&lt;/P&gt;&lt;P&gt;LOAD *,Cust as key2&lt;/P&gt;&lt;P&gt;from table 2&lt;/P&gt;&lt;P&gt;where not exist(key1,Cust);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2015 06:34:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/845741#M1009782</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2015-04-29T06:34:06Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario Help</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/845742#M1009784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vimlesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;not possible to concatinate or join table1 and table2. result set has been impacted&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2015 06:34:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/845742#M1009784</guid>
      <dc:creator>abhaysingh</dc:creator>
      <dc:date>2015-04-29T06:34:15Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario Help</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/845743#M1009785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;if you want to use in script then both table should be in one table.&lt;/P&gt;&lt;P&gt;else you can do in front end.&lt;/P&gt;&lt;P&gt;Check by which your result data is impacted by concatenate or join&amp;nbsp; (drop field by field and check).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vimlesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2015 06:36:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/845743#M1009785</guid>
      <dc:creator />
      <dc:date>2015-04-29T06:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario Help</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/845744#M1009787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Do you want to show sales of customers present in one table and not in other? Try like this&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Table1:&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Load * From Table1;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Table2:&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;NoConcatenate&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Load *,If(Exists(CustKeyField),0,1) As Flag From Table2;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;In UI,&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Expr: Sum({&amp;lt;Flag={1}&amp;gt;} Sales)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2015 07:10:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/845744#M1009787</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2015-04-29T07:10:48Z</dc:date>
    </item>
  </channel>
</rss>

