<?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: Load variables from file that contain variables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121880#M18620</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;I also didnt, need to use the double quotes around in the set analysis. It seemed to work either way, but is it best practice to use them?&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yes, read about that here&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/5335"&gt;Quotes in Set Analysis&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Jul 2018 15:23:30 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2018-07-25T15:23:30Z</dc:date>
    <item>
      <title>Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121866#M18606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already use the method outlined here by Barry Harmsen:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.qlikfix.com/2011/09/21/storing-variables-outside-of-qlikview/" title="http://www.qlikfix.com/2011/09/21/storing-variables-outside-of-qlikview/"&gt;http://www.qlikfix.com/2011/09/21/storing-variables-outside-of-qlikview/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, I have run into an issue where I have a need for a variable to be loaded based on the value of another variable. Let me explain what I mean.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lets assume I have these two variables:&lt;/P&gt;&lt;P&gt;vMedClaim = 1;&lt;/P&gt;&lt;P&gt;vDrillNo = IF($(vMedClaim) = 1, '&amp;lt;250',250);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I want to occur, during the script refresh, is for vDrillNo to either be '&amp;lt;250' or 250 as determined by the vMedClaim variable. However when I follow the method outlined in Barry's blog, the full expression is stored as the value of vDrillNo even though I am using the LET command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thoughts?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2018 13:36:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121866#M18606</guid>
      <dc:creator>cbushey1</dc:creator>
      <dc:date>2018-07-24T13:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121867#M18607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Both vMedClaim and vDrillNo are part of the Excel file variables?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2018 13:38:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121867#M18607</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-24T13:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121868#M18608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vMedClaim comes from an include file that is loaded previously.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2018 13:55:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121868#M18608</guid>
      <dc:creator>cbushey1</dc:creator>
      <dc:date>2018-07-24T13:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121869#M18609</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;example :&lt;/P&gt;&lt;P&gt;let v1 = 1;&lt;/P&gt;&lt;P&gt;let v2 = 'if($(v1)&amp;lt;5,''Z'',''W'')';&amp;nbsp; //&amp;nbsp; here use &lt;STRONG&gt;twice&lt;/STRONG&gt; simple quote &lt;/P&gt;&lt;P&gt;let v = $(v2);&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/208689_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;so for you :&lt;/P&gt;&lt;P&gt;vDrillNo = $(IF($(vMedClaim) = 1, ''&amp;lt;250'',''250'')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$ if you want to interprete value in script,and two simple quote, if not blank&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2018 14:23:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121869#M18609</guid>
      <dc:creator>ogautier62</dc:creator>
      <dc:date>2018-07-24T14:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121870#M18610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately this doesn't work for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used single quotes around the values, (2 on each side as described).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is what my variable looks like once loaded into the application (the same as in excel).&lt;IMG __jive_id="208704" alt="Nodice.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/208704_Nodice.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2018 16:47:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121870#M18610</guid>
      <dc:creator>cbushey1</dc:creator>
      <dc:date>2018-07-24T16:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121871#M18611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assume vMedClaim = 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The desired stored value of vDrillNo = '&amp;lt;250'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ultimately I am trying to use vDrillNo inside set analysis and it doesnt evaluate the way I would expect. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2018 19:25:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121871#M18611</guid>
      <dc:creator>cbushey1</dc:creator>
      <dc:date>2018-07-24T19:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121872#M18612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you be able to create a mock up of what you have?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2018 19:28:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121872#M18612</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-24T19:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121873#M18613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I thought you evaluate variable in script,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it is in front :&lt;/P&gt;&lt;P&gt;in script :&lt;/P&gt;&lt;P&gt;let v1 = 1;&lt;/P&gt;&lt;P&gt;let v2 = 'if($(v1)&amp;lt;5,''Z'',''W'')';&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/208720_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;don't put $ in definition of variable, but evaluate in front end&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 06:38:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121873#M18613</guid>
      <dc:creator>ogautier62</dc:creator>
      <dc:date>2018-07-25T06:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121874#M18614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes that might be easiest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note - In these files the variables are vMedClaims and vDrilldownSvcCat (instead of vDrillNo).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My goal is for vDrilldownSvcCat to be loaded into qlikview having the expression evaluated (so it returns either the &amp;lt;250 or 250) as I am trying to use $(vDrilldownSvcCat) in the following set analysis:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Sum({&amp;lt;Event_ServiceCat =$(vDrilldownSvcCat)&amp;gt;}Dollars)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 13:15:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121874#M18614</guid>
      <dc:creator>cbushey1</dc:creator>
      <dc:date>2018-07-25T13:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121875#M18615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See if this works for you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Sum({&amp;lt;Event_ServiceCat = {"$(vDrilldownSvcCat)"}&amp;gt;}Dollars)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 13:36:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121875#M18615</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-25T13:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121876#M18616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so evaluate in script,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in front end your variable is&amp;nbsp;&amp;nbsp; '&amp;lt;250'&lt;/P&gt;&lt;P&gt;Sum({&amp;lt;Event_ServiceCat ={"$(vDrilldownSvcCat)"}&amp;gt;}Dollars)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;don't forget {"&amp;nbsp;&amp;nbsp; "}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; sum({&amp;lt;Montant = {"$(v)"} &amp;gt;} Montant)&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/208840_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 13:39:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121876#M18616</guid>
      <dc:creator>ogautier62</dc:creator>
      <dc:date>2018-07-25T13:39:02Z</dc:date>
    </item>
    <item>
      <title>Re: Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121877#M18617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Thanks for the continued effort here (from both of you). I really appreciate the assistance.&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;&lt;SPAN style="font-size: 13.3333px;"&gt;Sunny, adding the "=" to the variable in the excel file certainly resolves the issue, but I am concerned this will cause performance degradation as I have read that having the "=" in the variable causes it to be reevaluated with every click. I have a few variables to apply this kind of logic to.&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;&lt;SPAN style="font-size: 13.3333px;"&gt;Thoughts?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 14:46:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121877#M18617</guid>
      <dc:creator>cbushey1</dc:creator>
      <dc:date>2018-07-25T14:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121878#M18618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have not heard of that, but I barely use variables, so might have heard of it and then forgot about it.... anyways try now&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;variable&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" height="24" style="width: 299px; height: 18px;" width="296"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="209"&gt;&lt;STRONG&gt;IF($(vMedClaims) = 1,'&amp;lt;250','250')&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expression&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Sum({&amp;lt;Event_ServiceCat = {"$(=$(vDrilldownSvcCat))"}&amp;gt;}Dollars)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 14:53:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121878#M18618</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-25T14:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121879#M18619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Taking this approach came me some weird numbers for the dollars, but what I realized was I think I can get away with your previous suggestion (using the equal sign in the stored variable). As it turns out, I only need to store the equal sign for variables that are going to be used in set analysis as the other ones seem to evaluate the expression without issue. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also didnt, need to use the double quotes around in the set analysis. It seemed to work either way, but is it best practice to use them?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 15:17:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121879#M18619</guid>
      <dc:creator>cbushey1</dc:creator>
      <dc:date>2018-07-25T15:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121880#M18620</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;I also didnt, need to use the double quotes around in the set analysis. It seemed to work either way, but is it best practice to use them?&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yes, read about that here&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/5335"&gt;Quotes in Set Analysis&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 15:23:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121880#M18620</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-25T15:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121881#M18621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes that is the exact post I was thinking of when I questioned the use so thanks for confirming. I will make sure to add them.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 15:47:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121881#M18621</guid>
      <dc:creator>cbushey1</dc:creator>
      <dc:date>2018-07-25T15:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121882#M18622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/171708"&gt;stalwar1&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have run into a snag using the double-quotes and it could just be how I am trying to combine everything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me explain further.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Essentially this thread was to help me set a default value to vDrilldownSvcCat to avoid using sheet triggers. And that part works great and the charts all work as expected now (with the double-quotes). The issue comes in that I have several buttons that change the value assigned to vDrilldownSvcCat to just 250 or &amp;lt;250.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once the value goes from the expression to just the &amp;lt;250 or 250 the double-quotes interfere with the set analysis and no results are displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Single quotes would work if I was only returning a literal but in the case of &amp;lt;250 I dont think single quotes will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thoughts?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 19:42:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121882#M18622</guid>
      <dc:creator>cbushey1</dc:creator>
      <dc:date>2018-07-25T19:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121883#M18623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, are you saying that you have an over-arching double quotes within which you have another set of double quotes? The reason I ask this is because in the attached sample I made &amp;gt;250 and 250 both worked within the double quotes... but in your real scenario it isn't? What is the difference?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 19:52:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121883#M18623</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-25T19:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121884#M18624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No that isnt the case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As part of the variable load I am assigning a value to vDrilldownSvcCat to =If($(vMedClaims) = 1,'&amp;lt;250','250). So in the app the value is exactly as I outlined. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I then have buttons in the app that change the value of vDrilldownSvcCat to just 250 or just &amp;lt;250. Because in the application the user needs to be able to change the values but I needed to default the application into a certain value and that is the reason for the formula in the initial formula.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 20:01:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121884#M18624</guid>
      <dc:creator>cbushey1</dc:creator>
      <dc:date>2018-07-25T20:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Load variables from file that contain variables</title>
      <link>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121885#M18625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh so, once you select the button to change the value, it stops working? Is that what the issue is?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 22:22:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-variables-from-file-that-contain-variables/m-p/121885#M18625</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-25T22:22:16Z</dc:date>
    </item>
  </channel>
</rss>

