<?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 Applying a value from a variable to a dimension in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Applying-a-value-from-a-variable-to-a-dimension/m-p/1171265#M380702</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to effect a dimension using 2 variables,&lt;/P&gt;&lt;P&gt;with this formula: &lt;STRONG&gt;='&amp;gt;=' &amp;amp;vStart_Slider_Selection &amp;amp; '&amp;lt;=' &amp;amp;vEnd_Slider_Selection&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my dimension is integer,&lt;/P&gt;&lt;P&gt;but when I apply a value to the variable (using a slider), &lt;SPAN style="font-size: 13.3333px;"&gt;the variable gets this value:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/130049_1.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Despite my effort, the dimension isn't effected:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2.png" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/130050_2.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Jul 2016 16:35:05 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-07-04T16:35:05Z</dc:date>
    <item>
      <title>Applying a value from a variable to a dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Applying-a-value-from-a-variable-to-a-dimension/m-p/1171265#M380702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to effect a dimension using 2 variables,&lt;/P&gt;&lt;P&gt;with this formula: &lt;STRONG&gt;='&amp;gt;=' &amp;amp;vStart_Slider_Selection &amp;amp; '&amp;lt;=' &amp;amp;vEnd_Slider_Selection&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my dimension is integer,&lt;/P&gt;&lt;P&gt;but when I apply a value to the variable (using a slider), &lt;SPAN style="font-size: 13.3333px;"&gt;the variable gets this value:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/130049_1.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Despite my effort, the dimension isn't effected:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2.png" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/130050_2.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2016 16:35:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Applying-a-value-from-a-variable-to-a-dimension/m-p/1171265#M380702</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-07-04T16:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: Applying a value from a variable to a dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Applying-a-value-from-a-variable-to-a-dimension/m-p/1171266#M380703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where exactely are you using your formula? And what exactely do you want to happen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a list box, you can try using a field &amp;lt;expression&amp;gt; (selected from the field drop down on general tab) like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If( [Posting Days] &amp;gt;= vStart_Slider_Selection and [Posting Days] &amp;lt;= vEnd_Slider_Selection, [Posting Days])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should limit the range of values in your list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you rather like to select the range of values, use a trigger OnInput of your variables and use an Selection - Select in field action with your [Posting Days] as field name and your formula as search string:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; &lt;/SPAN&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;='&amp;gt;=' &amp;amp;vStart_Slider_Selection &amp;amp; '&amp;lt;=' &amp;amp;vEnd_Slider_Selection&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2016 16:54:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Applying-a-value-from-a-variable-to-a-dimension/m-p/1171266#M380703</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-07-04T16:54:14Z</dc:date>
    </item>
  </channel>
</rss>

