<?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 Help with whatif scenarios in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-with-whatif-scenarios/m-p/1377109#M420316</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table containing SKU and quantities for a PO. &lt;/P&gt;&lt;P&gt;I want to create different scenario so the correct quantity figure is used.&lt;/P&gt;&lt;P&gt;Scenarios:-&lt;/P&gt;&lt;P&gt; Where the SKU appears once I want to the Quantity&amp;nbsp; to show.&lt;/P&gt;&lt;P&gt;If the ITEM is repeated and committed quantity is null then I want to the Quantity only for the record where there is a value for quantity and committed quantity too. example SKUs where count=2 or can you use where record count is more than 1?&lt;/P&gt;&lt;P&gt;The column&amp;nbsp; 'Figure to use' is the column I need to use. but I need to derive this. How do I do this? Can i compute this in script of use Set analysis in expressions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have attached an example. thanks in advance &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Nov 2017 13:05:30 GMT</pubDate>
    <dc:creator>qlikmpate0</dc:creator>
    <dc:date>2017-11-13T13:05:30Z</dc:date>
    <item>
      <title>Help with whatif scenarios</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-whatif-scenarios/m-p/1377109#M420316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table containing SKU and quantities for a PO. &lt;/P&gt;&lt;P&gt;I want to create different scenario so the correct quantity figure is used.&lt;/P&gt;&lt;P&gt;Scenarios:-&lt;/P&gt;&lt;P&gt; Where the SKU appears once I want to the Quantity&amp;nbsp; to show.&lt;/P&gt;&lt;P&gt;If the ITEM is repeated and committed quantity is null then I want to the Quantity only for the record where there is a value for quantity and committed quantity too. example SKUs where count=2 or can you use where record count is more than 1?&lt;/P&gt;&lt;P&gt;The column&amp;nbsp; 'Figure to use' is the column I need to use. but I need to derive this. How do I do this? Can i compute this in script of use Set analysis in expressions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have attached an example. thanks in advance &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2017 13:05:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-whatif-scenarios/m-p/1377109#M420316</guid>
      <dc:creator>qlikmpate0</dc:creator>
      <dc:date>2017-11-13T13:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: Help with whatif scenarios</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-whatif-scenarios/m-p/1377110#M420317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;POLines:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD [PO Number],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(Count&amp;gt;1 and not isnull(QUANTITY) and not isnull(QUANTITY_COMMITTED),SKU,"") as SKU,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ITEM_DESCRIPTION,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PO_LINE_ID,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; QUANTITY_COMMITTED,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; QUANTITY,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Figure to Use]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD [PO Number],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SKU,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ITEM_DESCRIPTION,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PO_LINE_ID,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; QUANTITY_COMMITTED,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; QUANTITY,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Count,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; [Zero and &amp;gt;1],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; Different?,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Figure to Use]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;FROM&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;[..\..\Purchasing\OtherDataSources\Sum up Adjusted Lines on PO.xlsx]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;(ooxml, embedded labels, table is Sheet1);&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2017 13:23:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-whatif-scenarios/m-p/1377110#M420317</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-13T13:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: Help with whatif scenarios</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-whatif-scenarios/m-p/1377111#M420318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wasn't able to test but the idea here is to use resident load to manipulate the SKU field to only show if there conditions are true:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'courier new', courier; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'courier new', courier; font-size: 13px;"&gt;if(Count&amp;gt;1 and not isnull(QUANTITY) and not isnull(QUANTITY_COMMITTED),SKU,"") &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2017 13:24:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-whatif-scenarios/m-p/1377111#M420318</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-13T13:24:55Z</dc:date>
    </item>
  </channel>
</rss>

