<?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: Select Orders Not recievied in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Select-Orders-Not-recievied/m-p/1930044#M76587</link>
    <description>&lt;P&gt;because you didnt provide any info i was just guessing.&amp;nbsp; i didnt mean that you use exactly my expression as i have no idea what youre fields are or what your expression is.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for my first suggestion, try to test the count of receipt ids in an if statement, if &amp;gt; 0 then return whatever your expression is.&amp;nbsp; this will result in only those orders with no receipts.&lt;/P&gt;
&lt;P&gt;for the 2nd suggestion, just add the set analysis phare in your expression.&lt;/P&gt;
&lt;P&gt;maybe you can share the actual expression you are using&lt;/P&gt;</description>
    <pubDate>Thu, 12 May 2022 20:12:20 GMT</pubDate>
    <dc:creator>edwin</dc:creator>
    <dc:date>2022-05-12T20:12:20Z</dc:date>
    <item>
      <title>Select Orders Not recievied</title>
      <link>https://community.qlik.com/t5/App-Development/Select-Orders-Not-recievied/m-p/1929907#M76563</link>
      <description>&lt;P&gt;Hello i have a qlikview dashbord which include both order and reciept information,there are some orders which have not been recievied how i can select just order without reciepts in the example below htere 14 orders and 7 Reciepts i want to select just 7 orders not yet recievied&lt;/P&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="theboss123_0-1652367423280.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/79278i25F72BFB55465423/image-size/medium?v=v2&amp;amp;px=400" role="button" title="theboss123_0-1652367423280.png" alt="theboss123_0-1652367423280.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 14:59:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Select-Orders-Not-recievied/m-p/1929907#M76563</guid>
      <dc:creator>theboss-123</dc:creator>
      <dc:date>2022-05-12T14:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: Select Orders Not recievied</title>
      <link>https://community.qlik.com/t5/App-Development/Select-Orders-Not-recievied/m-p/1929920#M76566</link>
      <description>&lt;P&gt;there has to be some relationship between orders and receipts.&amp;nbsp; you may have to add sample data for anyone to help&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 15:27:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Select-Orders-Not-recievied/m-p/1929920#M76566</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2022-05-12T15:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: Select Orders Not recievied</title>
      <link>https://community.qlik.com/t5/App-Development/Select-Orders-Not-recievied/m-p/1929957#M76572</link>
      <description>&lt;P&gt;Hi tes there is relationship between orders and receipt&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 16:29:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Select-Orders-Not-recievied/m-p/1929957#M76572</guid>
      <dc:creator>theboss-123</dc:creator>
      <dc:date>2022-05-12T16:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Select Orders Not recievied</title>
      <link>https://community.qlik.com/t5/App-Development/Select-Orders-Not-recievied/m-p/1929980#M76580</link>
      <description>&lt;P&gt;Yes there is a relationship between the two table and it will useful to find a solution on the interface associated without touching script because it will be on the server qlikview&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 17:30:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Select-Orders-Not-recievied/m-p/1929980#M76580</guid>
      <dc:creator>theboss-123</dc:creator>
      <dc:date>2022-05-12T17:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: Select Orders Not recievied</title>
      <link>https://community.qlik.com/t5/App-Development/Select-Orders-Not-recievied/m-p/1930011#M76582</link>
      <description>&lt;P&gt;im sure theres a lot of ways to do this.&amp;nbsp; since there is an association between order and receipt, you can&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. simply count the receipts, if 0 - there you have it&lt;/P&gt;
&lt;P&gt;2. or use the e function (exclude any orders with receipts).&amp;nbsp; to explain, first the p function&lt;BR /&gt;take for example OredrID, ReceiptID, and Volume.&lt;BR /&gt;if you have a table with OrderID as dim, sum(Volume) gives you the volume per order&lt;/P&gt;
&lt;P&gt;sum({&amp;lt;OrderID=p({&amp;lt;ReceiptID={*}&amp;gt;}OrderID)&amp;gt;}Volume) means sum the volume for orders where there is a receipt.&amp;nbsp; now the converse is&lt;/P&gt;
&lt;P&gt;sum({&amp;lt;OrderID=e({&amp;lt;ReceiptID={*}&amp;gt;}OrderID)&amp;gt;}Volume)&amp;nbsp; means sum the volume for orders excluding orders where there is a receipt:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Dev/P-E/td-p/596796" target="_blank" rel="noopener"&gt;https://community.qlik.com/t5/QlikView-App-Dev/P-E/td-p/596796&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 18:50:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Select-Orders-Not-recievied/m-p/1930011#M76582</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2022-05-12T18:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: Select Orders Not recievied</title>
      <link>https://community.qlik.com/t5/App-Development/Select-Orders-Not-recievied/m-p/1930032#M76586</link>
      <description>&lt;P&gt;Hi again Edwin thanks for your time&amp;nbsp;&lt;/P&gt;
&lt;P&gt;01 I did the count but I didn't understand your first suggestion&amp;nbsp;&lt;/P&gt;
&lt;P&gt;02 regarding the second d suggestion I have order ID and receipt ID what did you mean by volume in my case I have quantity field and amount field&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 19:26:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Select-Orders-Not-recievied/m-p/1930032#M76586</guid>
      <dc:creator>theboss-123</dc:creator>
      <dc:date>2022-05-12T19:26:44Z</dc:date>
    </item>
    <item>
      <title>Re: Select Orders Not recievied</title>
      <link>https://community.qlik.com/t5/App-Development/Select-Orders-Not-recievied/m-p/1930044#M76587</link>
      <description>&lt;P&gt;because you didnt provide any info i was just guessing.&amp;nbsp; i didnt mean that you use exactly my expression as i have no idea what youre fields are or what your expression is.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for my first suggestion, try to test the count of receipt ids in an if statement, if &amp;gt; 0 then return whatever your expression is.&amp;nbsp; this will result in only those orders with no receipts.&lt;/P&gt;
&lt;P&gt;for the 2nd suggestion, just add the set analysis phare in your expression.&lt;/P&gt;
&lt;P&gt;maybe you can share the actual expression you are using&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 20:12:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Select-Orders-Not-recievied/m-p/1930044#M76587</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2022-05-12T20:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: Select Orders Not recievied</title>
      <link>https://community.qlik.com/t5/App-Development/Select-Orders-Not-recievied/m-p/1930066#M76597</link>
      <description>&lt;P&gt;Thanks Edwan I will try to work through the if statement if (count(receipt) &amp;lt;0 so that must display only order without receipts&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I try this syntax on texts box or table ?&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 21:28:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Select-Orders-Not-recievied/m-p/1930066#M76597</guid>
      <dc:creator>theboss-123</dc:creator>
      <dc:date>2022-05-12T21:28:54Z</dc:date>
    </item>
  </channel>
</rss>

