<?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: Using variable in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015776#M922102</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you check now?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Apr 2016 17:12:37 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2016-04-25T17:12:37Z</dc:date>
    <item>
      <title>Using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015773#M922099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have one straight table..&amp;nbsp; based on selections i am getting data.&lt;/P&gt;&lt;P&gt;Like&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;From:&amp;nbsp; 100&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;To: 200&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here populating table between select ranges.. (100 to 200 between data i am getting)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Exp:&amp;nbsp; IF(vMin='--Select--' or vMax='Select', sum(sales),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(sum(sales)&amp;gt;=vMin and sum(sales)&amp;lt;=vMax, sum(sales))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This expression working fine..&lt;/P&gt;&lt;P&gt;But my requirement...&lt;/P&gt;&lt;P&gt;If i am enter any one &lt;STRONG&gt;From or To&lt;/STRONG&gt;&amp;nbsp; i want to populate data..&lt;/P&gt;&lt;P&gt;Suppose if i am enter 100... i want to show data less than &lt;STRONG&gt;sum(sales)&amp;lt;=100.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I have written&amp;nbsp; this..&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;IF(vMin='--Select--' or vMax='Select', sum(sales),&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF(vMin=vMin or vMax='--Select--', sum(sales)&amp;lt;=100,&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(sum(sales)&amp;gt;=vMin and sum(sales)&amp;lt;=vMax, sum(sales))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it's not working..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please can anyone help me..&lt;/P&gt;&lt;P&gt;Thanks in Advance..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015773#M922099</guid>
      <dc:creator>Nagaraju_KCS</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015774#M922100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;If(vMin='--Select--' &lt;SPAN style="color: #ff0000;"&gt;and&lt;/SPAN&gt; vMax='Select', Sum(sales),&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(vMin=vMin &lt;SPAN style="color: #ff0000;"&gt;and&lt;/SPAN&gt; vMax='--Select--', &lt;SPAN style="color: #ff0000;"&gt;If(Sum(sales)&amp;lt;=vMin, Sum(sales))&lt;/SPAN&gt;,&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Sum(sales) &amp;gt;= vMin and Sum(sales) &amp;lt;= vMax, Sum(sales))&lt;SPAN style="color: #ff0000;"&gt;))&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2016 14:06:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015774#M922100</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-25T14:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: Using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015775#M922101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did i anything wrong??&lt;/P&gt;&lt;P&gt;Please can you check once..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i am enter 300000.. i want to show 1 record only..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PFA,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2016 17:09:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015775#M922101</guid>
      <dc:creator>Nagaraju_KCS</dc:creator>
      <dc:date>2016-04-25T17:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: Using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015776#M922102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you check now?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2016 17:12:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015776#M922102</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-25T17:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: Using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015777#M922103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for response..&lt;/P&gt;&lt;P&gt;If i am enter 300000, that should be only one record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and &lt;STRONG&gt;Contribution% &lt;/STRONG&gt;not showing....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2016 17:28:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015777#M922103</guid>
      <dc:creator>Nagaraju_KCS</dc:creator>
      <dc:date>2016-04-25T17:28:24Z</dc:date>
    </item>
    <item>
      <title>Re: Using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015778#M922104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check now &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2016 17:40:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015778#M922104</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-25T17:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: Using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015779#M922105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got it.. Anyway thanks &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2016 17:59:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015779#M922105</guid>
      <dc:creator>Nagaraju_KCS</dc:creator>
      <dc:date>2016-04-25T17:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: Using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015780#M922106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It was still not what you were looking for?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2016 18:01:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015780#M922106</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-25T18:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015781#M922107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is not my real data, i don't have access to post real data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's why i have made sample Application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here i am getting proper everything..&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Actually these expression i written in my real data..&amp;nbsp; But percentages not getting proper way... I don't know why&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I am confusing with real data... .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am fed up with data..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Everything i am getting proper, percentages&amp;nbsp; getting wrong figure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's why i am looking for better way of write expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because of that i am keep posting one issue...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2016 18:37:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015781#M922107</guid>
      <dc:creator>Nagaraju_KCS</dc:creator>
      <dc:date>2016-04-25T18:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: Using variable</title>
      <link>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015782#M922108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure, but have you got a chance to look at this link?&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-1290"&gt;Preparing examples for Upload - Reduction and Data Scrambling&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2016 18:39:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-variable/m-p/1015782#M922108</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-25T18:39:13Z</dc:date>
    </item>
  </channel>
</rss>

