<?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 What if...? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225580#M77870</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Plz give details of what this table is all about, criteria, table content etc.&lt;/P&gt;&lt;P&gt;Happy Thoughts&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Jul 2010 09:14:35 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-07-16T09:14:35Z</dc:date>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225579#M77869</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;Im working on a qlikview model but a customer asked me to create a what if analysis using a slider object and a table containing x,y,z&lt;/P&gt;&lt;P&gt;any ideas how to go about doing that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jul 2010 09:00:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225579#M77869</guid>
      <dc:creator />
      <dc:date>2010-07-16T09:00:23Z</dc:date>
    </item>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225580#M77870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Plz give details of what this table is all about, criteria, table content etc.&lt;/P&gt;&lt;P&gt;Happy Thoughts&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jul 2010 09:14:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225580#M77870</guid>
      <dc:creator />
      <dc:date>2010-07-16T09:14:35Z</dc:date>
    </item>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225581#M77871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;alright....i got a list of Customers alright. They all got sales, cost, gross profit and gross profit %.&lt;/P&gt;&lt;P&gt;Now i need the create several or if possible just one slider object that depicts certain criteria. e.g&lt;/P&gt;&lt;P&gt;If the sales increase by 10% but the costs increase by 7% what will the outcome be.(How will the GP and GP% change)&lt;/P&gt;&lt;P&gt;The straight table needs to be used to give the outcome by each customer.&lt;/P&gt;&lt;P&gt;let me know if you understand.&lt;/P&gt;&lt;P&gt;I cnt seem to get it right.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jul 2010 09:23:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225581#M77871</guid>
      <dc:creator />
      <dc:date>2010-07-16T09:23:45Z</dc:date>
    </item>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225582#M77872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Blaze,&lt;/P&gt;&lt;P&gt;First thing to do is to create 2 sliders, one for Sales and one for Cost. Then, assign a variable for both like v_Sales for sales slider and v_Cost for cost slider. Next, assign a Min Value, Max Value and Static Step for your slider. Try to use -10 for Min Value, 30 for Max Value and 1 for Static Step. In this case, your slider would be from -10 (negative ten) to 30 with a step of 1. After doing that, create a straight table with a Customer dimension and expressions for sales, cost, gross profit and gp%.&lt;/P&gt;&lt;P&gt;Now create an expression for your "What-If Sales" the formula would be for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;sum (SALES) * (1 + v_Sales/100)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;And for "What-If Cost:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;sum (COST) * (1 + v_Cost/100)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;And for Gross Profit (that is Sales less the Cost, right?.. then):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;sum (SALES) * (1 + v_Sales/100) - sum (COST) * (1 + v_Cost/100)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;so therefore, GP% is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;sum (SALES) * (1 + v_Sales/100) / sum (COST) * (1 + v_Cost/100)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;- change the number format to percentage.. &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;And TADA!! Now you got your What-If analysis..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that help you solve your problem..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Lester&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jul 2010 09:44:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225582#M77872</guid>
      <dc:creator />
      <dc:date>2010-07-16T09:44:47Z</dc:date>
    </item>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225583#M77873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well it does work, but now the rest of my data is messed up lol all f my graphs say theres no data etc.&lt;/P&gt;&lt;P&gt;Whats happening?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jul 2010 10:03:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225583#M77873</guid>
      <dc:creator />
      <dc:date>2010-07-16T10:03:09Z</dc:date>
    </item>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225584#M77874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hmmm.. that's weird.. coz we didn't change any of your data.. &lt;IMG alt="Hmm" src="http://community.qlik.com/emoticons/emotion-40.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jul 2010 10:09:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225584#M77874</guid>
      <dc:creator />
      <dc:date>2010-07-16T10:09:43Z</dc:date>
    </item>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225585#M77875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i know... &lt;IMG alt="Indifferent" src="http://community.qlik.com/emoticons/emotion-8.gif" /&gt; but half the data gone even after i delete the what if&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jul 2010 10:13:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225585#M77875</guid>
      <dc:creator />
      <dc:date>2010-07-16T10:13:19Z</dc:date>
    </item>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225586#M77876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;actually, the "what-if' has nothing to do with your other graphs or charts.. try to check your script, you might have accidentally changed your script and reloaded it..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Lester&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jul 2010 10:23:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225586#M77876</guid>
      <dc:creator />
      <dc:date>2010-07-16T10:23:58Z</dc:date>
    </item>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225587#M77877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if i insert the what if analysis then nothing changes okay, but once i move the slider than all my data on every sheet changes and i cnt reset it using clear or anything. my script seems fine i haven't touched it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jul 2010 10:25:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225587#M77877</guid>
      <dc:creator />
      <dc:date>2010-07-16T10:25:58Z</dc:date>
    </item>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225588#M77878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;any Ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jul 2010 10:54:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225588#M77878</guid>
      <dc:creator />
      <dc:date>2010-07-16T10:54:49Z</dc:date>
    </item>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225589#M77879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no updates?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jul 2010 11:43:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225589#M77879</guid>
      <dc:creator />
      <dc:date>2010-07-16T11:43:15Z</dc:date>
    </item>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225590#M77880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is what happens. In the slider, i set it to 0 and everything goes like this.... &lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/0272.Incorrect.jpg"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/11/0272.Incorrect.jpg" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;As appose from before i use the slider like this... &lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/3312.Before.jpg"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/11/3312.Before.jpg" /&gt;&lt;/A&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jul 2010 12:37:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225590#M77880</guid>
      <dc:creator />
      <dc:date>2010-07-16T12:37:10Z</dc:date>
    </item>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225591#M77881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Blaze,&lt;/P&gt;&lt;P&gt;Seems like there's something wrong on your formula. Try to check the formula for What-if Sales. Based from the image that you attached, the Sales value becomes 0 when the slider is in "0". You might forgot to put "1" on the formula:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;sum (SALES) * ( &lt;B&gt;1&lt;/B&gt; + v_Sales/100)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;- Lester&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jul 2010 04:19:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225591#M77881</guid>
      <dc:creator />
      <dc:date>2010-07-19T04:19:51Z</dc:date>
    </item>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225592#M77882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no there s a 1 in the formula buddy . Any other suggestions?&lt;/P&gt;&lt;P&gt;If i dont move the slider then nothing changes but as soon as i move it, then the whole document goes bonkerz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jul 2010 07:38:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225592#M77882</guid>
      <dc:creator />
      <dc:date>2010-07-19T07:38:13Z</dc:date>
    </item>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225593#M77883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmmm.. can you post a screen shot of your slider's properties and a charts expression tab? If possible..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jul 2010 08:14:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225593#M77883</guid>
      <dc:creator />
      <dc:date>2010-07-19T08:14:46Z</dc:date>
    </item>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225594#M77884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pls Check attached Doc.&lt;/P&gt;&lt;P&gt;It will Help You.&lt;/P&gt;&lt;P&gt;[View:http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/8182.What-If-analysis.doc:550:0]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jul 2010 08:20:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225594#M77884</guid>
      <dc:creator>suniljain</dc:creator>
      <dc:date>2010-07-19T08:20:05Z</dc:date>
    </item>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225595#M77885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;please check the slider, did you connect to Variable with single mode?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jul 2010 09:00:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225595#M77885</guid>
      <dc:creator />
      <dc:date>2010-07-19T09:00:19Z</dc:date>
    </item>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225596#M77886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yea i did but its still not working&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jul 2010 10:05:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225596#M77886</guid>
      <dc:creator />
      <dc:date>2010-07-19T10:05:59Z</dc:date>
    </item>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225597#M77887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Worked like a charm. Thanks so much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jul 2010 10:20:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225597#M77887</guid>
      <dc:creator />
      <dc:date>2010-07-19T10:20:37Z</dc:date>
    </item>
    <item>
      <title>What if...?</title>
      <link>https://community.qlik.com/t5/QlikView/What-if/m-p/225598#M77888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i got the whole thing working but now i need to add a slider contaning quantity. Ive put in the slider and it works and ive put it in the table along with sales, gp etc but whenever i move the quantity slider, the gp result and the cost does not change. there is a problem with the formulas but i cnt figure it out.&lt;/P&gt;&lt;P&gt;Formulas are:&lt;/P&gt;&lt;P&gt;sum(Cost) * (1 + vCost2/100) for What if Cost&lt;/P&gt;&lt;P&gt;and sum (Sales) * (1 + vSales2/100) - sum (Cost) * (1 + vCost2/100) for What if GP&lt;/P&gt;&lt;P&gt;Any help?&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jul 2010 10:38:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-if/m-p/225598#M77888</guid>
      <dc:creator />
      <dc:date>2010-07-20T10:38:24Z</dc:date>
    </item>
  </channel>
</rss>

