<?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: Calculated Field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Calculated-Field/m-p/597605#M478315</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Herbert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Mar 2014 20:11:46 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-03-19T20:11:46Z</dc:date>
    <item>
      <title>Calculated Field</title>
      <link>https://community.qlik.com/t5/QlikView/Calculated-Field/m-p/597599#M478309</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 a table with fields Customer ID, Order Amount, Delivered Amount. How can I say Ordered Amount - Delivered Amount and only return in a straight chart amounts that are greater than zero i.e. only the customer ID's with outstanding orders. I also need the calculated field showing i.e telling me how much is outstanding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Herbiec09&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 19:30:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculated-Field/m-p/597599#M478309</guid>
      <dc:creator />
      <dc:date>2014-03-19T19:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Field</title>
      <link>https://community.qlik.com/t5/QlikView/Calculated-Field/m-p/597600#M478310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;may be some sample data with expected output will help give you a better response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in general, your customer id would be in dimension of a chart and expressions could look like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=[Ordered Amount]-[Delivered Amount]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppressing values that are zero can be done in a few ways - order by Y value in descending order or with an if condition, etc.....that is why a sample data and expected output will help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 19:41:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculated-Field/m-p/597600#M478310</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-03-19T19:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Field</title>
      <link>https://community.qlik.com/t5/QlikView/Calculated-Field/m-p/597601#M478311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Apologies, the amount ordered and delivered fields are in 2 different tables linked by the customer ID&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 19:42:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculated-Field/m-p/597601#M478311</guid>
      <dc:creator />
      <dc:date>2014-03-19T19:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Field</title>
      <link>https://community.qlik.com/t5/QlikView/Calculated-Field/m-p/597602#M478312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Herbet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want it in a straight table, it would have one dimension "Customer ID", and up to three expressions:&lt;BR /&gt;sum("Order Amount")&lt;BR /&gt;sum("Delivered Amount")&lt;BR /&gt;sum("Order Amount") - sum("Delivered Amount")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to show only Customers where sum("Order Amount") - sum("Delivered Amount") &amp;gt; 0, replace dimension "Customer ID" with a calculated dimension&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;aggr(if(sum("Order Amount") - sum("Delivered Amount") &amp;gt; 0, "Customer ID"),"Customer ID")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Check the box "suppress when value is null".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 19:44:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculated-Field/m-p/597602#M478312</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-03-19T19:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Field</title>
      <link>https://community.qlik.com/t5/QlikView/Calculated-Field/m-p/597603#M478313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Awesome, just what the doctor ordered. Thanks Michael&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One last question, how can I incorporate other dimensions eg customer name, city etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Much appreciated&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Herbert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 19:54:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculated-Field/m-p/597603#M478313</guid>
      <dc:creator />
      <dc:date>2014-03-19T19:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Field</title>
      <link>https://community.qlik.com/t5/QlikView/Calculated-Field/m-p/597604#M478314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;... how can I incorporate other dimensions eg customer name, city etc...&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Sure - just add them as more dimensions.&amp;nbsp; I don't expect any issues, if they are the attributes of the customer.&amp;nbsp; Or you can even add them as expressions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 19:58:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculated-Field/m-p/597604#M478314</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-03-19T19:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Field</title>
      <link>https://community.qlik.com/t5/QlikView/Calculated-Field/m-p/597605#M478315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Herbert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 20:11:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculated-Field/m-p/597605#M478315</guid>
      <dc:creator />
      <dc:date>2014-03-19T20:11:46Z</dc:date>
    </item>
  </channel>
</rss>

