<?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 How to get customer list who bought both the item in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-get-customer-list-who-bought-both-the-item/m-p/2002014#M83004</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;Need a help on below.&lt;/P&gt;
&lt;P&gt;Sample date:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="loganathan_0-1667941613805.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/93153iFF35AAC7A12A862A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="loganathan_0-1667941613805.png" alt="loganathan_0-1667941613805.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;from the above i wanted to create a table with the details as whoever bought both apple and oranges. expecting the table as a result.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="loganathan_1-1667941811778.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/93154i2053B6AFB13FA44B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="loganathan_1-1667941811778.png" alt="loganathan_1-1667941811778.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;any inputs please&lt;/P&gt;
&lt;P&gt;TIA&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 08 Nov 2022 21:11:01 GMT</pubDate>
    <dc:creator>loganathan</dc:creator>
    <dc:date>2022-11-08T21:11:01Z</dc:date>
    <item>
      <title>How to get customer list who bought both the item</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-customer-list-who-bought-both-the-item/m-p/2002014#M83004</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;Need a help on below.&lt;/P&gt;
&lt;P&gt;Sample date:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="loganathan_0-1667941613805.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/93153iFF35AAC7A12A862A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="loganathan_0-1667941613805.png" alt="loganathan_0-1667941613805.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;from the above i wanted to create a table with the details as whoever bought both apple and oranges. expecting the table as a result.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="loganathan_1-1667941811778.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/93154i2053B6AFB13FA44B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="loganathan_1-1667941811778.png" alt="loganathan_1-1667941811778.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;any inputs please&lt;/P&gt;
&lt;P&gt;TIA&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Nov 2022 21:11:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-customer-list-who-bought-both-the-item/m-p/2002014#M83004</guid>
      <dc:creator>loganathan</dc:creator>
      <dc:date>2022-11-08T21:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to get customer list who bought both the item</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-customer-list-who-bought-both-the-item/m-p/2002185#M83014</link>
      <description>&lt;P&gt;Hi, you can just do a couple of inner join with both conditions:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;InitialTable:
LOAD sno, name...
;

Inner Join LOAD name Resident InitialTable where item='apple';
Inner Join LOAD name Resident InitialTable where item='orange';
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;Add the necessary fields to create the expected table.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 08:21:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-customer-list-who-bought-both-the-item/m-p/2002185#M83014</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2022-11-09T08:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to get customer list who bought both the item</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-customer-list-who-bought-both-the-item/m-p/2002317#M83022</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Concat({$&amp;lt;name=p({$&amp;lt;item={'apple'}&amp;gt;})*p({$&amp;lt;item={'orange'}&amp;gt;})&amp;gt;} item,' and ')&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MarcoWedel_0-1668029100965.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/93336i4260AEE6ED1F924A/image-size/large?v=v2&amp;amp;px=999" role="button" title="MarcoWedel_0-1668029100965.png" alt="MarcoWedel_0-1668029100965.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 21:25:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-customer-list-who-bought-both-the-item/m-p/2002317#M83022</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2022-11-09T21:25:11Z</dc:date>
    </item>
  </channel>
</rss>

