<?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: E () not working as expected in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/E-not-working-as-expected/m-p/1978955#M1220902</link>
    <description>&lt;P&gt;maybe another method could be:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Concat({$-$&amp;lt;Type={'SO'}&amp;gt;} ID, ',')&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 08 Sep 2022 19:58:07 GMT</pubDate>
    <dc:creator>MarcoWedel</dc:creator>
    <dc:date>2022-09-08T19:58:07Z</dc:date>
    <item>
      <title>E () not working as expected</title>
      <link>https://community.qlik.com/t5/QlikView/E-not-working-as-expected/m-p/1978473#M1220883</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;My data looks like this.&lt;/P&gt;
&lt;P&gt;Item:&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="100%"&gt;ID&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="100%"&gt;1&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="100%"&gt;2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="100%"&gt;3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="100%"&gt;5&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Txn:&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="25%"&gt;ID&lt;/TD&gt;
&lt;TD width="25%"&gt;Type&lt;/TD&gt;
&lt;TD width="25%"&gt;Amt&lt;/TD&gt;
&lt;TD width="25%"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="25%"&gt;1&lt;/TD&gt;
&lt;TD width="25%"&gt;bill&lt;/TD&gt;
&lt;TD width="25%"&gt;50&lt;/TD&gt;
&lt;TD width="25%"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="25%"&gt;2&lt;/TD&gt;
&lt;TD width="25%"&gt;bill&lt;/TD&gt;
&lt;TD width="25%"&gt;60&lt;/TD&gt;
&lt;TD width="25%"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;3&lt;/TD&gt;
&lt;TD&gt;SO&lt;/TD&gt;
&lt;TD&gt;46&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My goal is to print the ID which does not have SO type in the Transaction table.&lt;/P&gt;
&lt;P&gt;My expression looks like this.&lt;/P&gt;
&lt;P&gt;Concat({&amp;lt;[Item.ID]=e({$&amp;lt;[Txn.Type]={'SO'}&amp;gt;}[Item.ID])&amp;gt;}[Item.ID], ',')&lt;/P&gt;
&lt;P&gt;it shows 1, 2&lt;/P&gt;
&lt;P&gt;but the expected is&lt;/P&gt;
&lt;P&gt;1,2,5&lt;/P&gt;
&lt;P&gt;What is wrong here?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2022 06:56:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/E-not-working-as-expected/m-p/1978473#M1220883</guid>
      <dc:creator>jduluc12</dc:creator>
      <dc:date>2022-09-08T06:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: E () not working as expected</title>
      <link>https://community.qlik.com/t5/QlikView/E-not-working-as-expected/m-p/1978540#M1220889</link>
      <description>&lt;P&gt;Table reference is the issue here. You could instead try like:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;=Concat( {&amp;lt;Item.ID&lt;STRONG&gt;-&lt;/STRONG&gt;=&lt;STRONG&gt;p&lt;/STRONG&gt;({$&amp;lt;Txn.Type={'SO'}&amp;gt;}&lt;STRONG&gt;Txn&lt;/STRONG&gt;.ID)&amp;gt;} Item.ID, ',')&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2022 09:46:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/E-not-working-as-expected/m-p/1978540#M1220889</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2022-09-08T09:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: E () not working as expected</title>
      <link>https://community.qlik.com/t5/QlikView/E-not-working-as-expected/m-p/1978946#M1220899</link>
      <description>&lt;P&gt;Does not seem to solve the issue.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2022 19:27:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/E-not-working-as-expected/m-p/1978946#M1220899</guid>
      <dc:creator>jduluc12</dc:creator>
      <dc:date>2022-09-08T19:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: E () not working as expected</title>
      <link>https://community.qlik.com/t5/QlikView/E-not-working-as-expected/m-p/1978955#M1220902</link>
      <description>&lt;P&gt;maybe another method could be:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Concat({$-$&amp;lt;Type={'SO'}&amp;gt;} ID, ',')&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2022 19:58:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/E-not-working-as-expected/m-p/1978955#M1220902</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2022-09-08T19:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: E () not working as expected</title>
      <link>https://community.qlik.com/t5/QlikView/E-not-working-as-expected/m-p/1978981#M1220904</link>
      <description>&lt;P&gt;unfortunately this also did not work&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2022 21:33:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/E-not-working-as-expected/m-p/1978981#M1220904</guid>
      <dc:creator>jduluc12</dc:creator>
      <dc:date>2022-09-08T21:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: E () not working as expected</title>
      <link>https://community.qlik.com/t5/QlikView/E-not-working-as-expected/m-p/1979001#M1220906</link>
      <description>&lt;P&gt;I think&amp;nbsp; i misses an important detail here.&lt;/P&gt;
&lt;P&gt;there is another column customer in Txn table.&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="25%"&gt;ID&lt;/TD&gt;
&lt;TD width="25%"&gt;Type&lt;/TD&gt;
&lt;TD width="25%"&gt;Amt&lt;/TD&gt;
&lt;TD width="25%"&gt;Customer&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="25%"&gt;1&lt;/TD&gt;
&lt;TD width="25%"&gt;bill&lt;/TD&gt;
&lt;TD width="25%"&gt;50&lt;/TD&gt;
&lt;TD width="25%"&gt;A&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="25%"&gt;2&lt;/TD&gt;
&lt;TD width="25%"&gt;bill&lt;/TD&gt;
&lt;TD width="25%"&gt;60&lt;/TD&gt;
&lt;TD width="25%"&gt;A&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;3&lt;/TD&gt;
&lt;TD&gt;SO&lt;/TD&gt;
&lt;TD&gt;46&lt;/TD&gt;
&lt;TD&gt;B&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And there is a customer filter. I select customer A, so the current data excludes Item 5, so it does not work i.e. it does not bring the 5 in the concatenated list.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;not sure if it will help me getting a solution for it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Sep 2022 00:41:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/E-not-working-as-expected/m-p/1979001#M1220906</guid>
      <dc:creator>jduluc12</dc:creator>
      <dc:date>2022-09-09T00:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: E () not working as expected</title>
      <link>https://community.qlik.com/t5/QlikView/E-not-working-as-expected/m-p/1979078#M1220913</link>
      <description>&lt;P&gt;Yes, that selection has impact. You can try :&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;=Concat( {&amp;lt;Item.ID&lt;/SPAN&gt;&lt;STRONG&gt;-&lt;/STRONG&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;STRONG&gt;p&lt;/STRONG&gt;&lt;SPAN&gt;({&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&amp;lt;Txn.Type={'SO'}&amp;gt;}&lt;/SPAN&gt;&lt;STRONG&gt;Txn&lt;/STRONG&gt;&lt;SPAN&gt;.ID)&amp;gt;} Item.ID, ',')&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Sep 2022 07:19:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/E-not-working-as-expected/m-p/1979078#M1220913</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2022-09-09T07:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: E () not working as expected</title>
      <link>https://community.qlik.com/t5/QlikView/E-not-working-as-expected/m-p/1979095#M1220915</link>
      <description>&lt;P&gt;It did not solve the issue exactly but gave me an idea of how to solve it differently.&lt;/P&gt;
&lt;P&gt;I created an island table with Item.id used that instead of the Item table. since that island table has no connection with the customer so it does not get filtered by the selection of the customer.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Concat( {&amp;lt;ItemList.ID&lt;/SPAN&gt;&lt;STRONG&gt;-&lt;/STRONG&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;STRONG&gt;p&lt;/STRONG&gt;&lt;SPAN&gt;({$&amp;lt;Txn.Type={'SO'}&amp;gt;}&lt;/SPAN&gt;&lt;STRONG&gt;Txn&lt;/STRONG&gt;&lt;SPAN&gt;.ID)&amp;gt;} ItemList.ID, ',')&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;thanks for all help&lt;/P&gt;</description>
      <pubDate>Fri, 09 Sep 2022 07:38:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/E-not-working-as-expected/m-p/1979095#M1220915</guid>
      <dc:creator>jduluc12</dc:creator>
      <dc:date>2022-09-09T07:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: E () not working as expected</title>
      <link>https://community.qlik.com/t5/QlikView/E-not-working-as-expected/m-p/1979097#M1220916</link>
      <description>&lt;P&gt;It did not solve the issue exactly but gave me an idea of how to solve it differently.&lt;/P&gt;
&lt;P&gt;I created an island table with Item.id used that instead of the Item table. since that island table has no connection with the customer so it does not get filtered by the selection of the customer.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Concat( {&amp;lt;ItemList.ID&lt;/SPAN&gt;&lt;STRONG&gt;-&lt;/STRONG&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;STRONG&gt;p&lt;/STRONG&gt;&lt;SPAN&gt;({$&amp;lt;Txn.Type={'SO'}&amp;gt;}&lt;/SPAN&gt;&lt;STRONG&gt;Txn&lt;/STRONG&gt;&lt;SPAN&gt;.ID)&amp;gt;} ItemList.ID, ',')&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;thanks for all help&lt;/P&gt;</description>
      <pubDate>Fri, 09 Sep 2022 07:38:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/E-not-working-as-expected/m-p/1979097#M1220916</guid>
      <dc:creator>jduluc12</dc:creator>
      <dc:date>2022-09-09T07:38:54Z</dc:date>
    </item>
  </channel>
</rss>

