<?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: listbox selection to load certain data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370558#M705384</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; Don't write your expression in variable "vABC" just leave it empty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Consider your LoadedDate field is "CreatedDate"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Go to Document properties --&amp;gt; Triggers --&amp;gt; FieldEventTriggers &lt;/P&gt;&lt;P&gt; And selecte the field "CreatedDate"&amp;nbsp; and Click &lt;STRONG&gt;On Select&lt;/STRONG&gt; Add&amp;nbsp; Action --&amp;gt; External --&amp;gt; Set Variable --&amp;gt;&amp;nbsp; Variable = vABC and Value = if(getselectedcount(ABC)&amp;gt;0, concat(getfieldselections(ABC), ','), ﻿getfieldselections(ABC)). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Hope now you will get the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Regards&lt;BR /&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Apr 2012 14:20:47 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-04-27T14:20:47Z</dc:date>
    <item>
      <title>listbox selection to load certain data</title>
      <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370544#M705370</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;&lt;/P&gt;&lt;P&gt;I am currently loading various qvds based on their date.&amp;nbsp; the user can type into an input box the values which they wish to load.&amp;nbsp; I want to change this to just selecting from a listbox instead of having to manually type the dates in?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried putting the variable as concat(Date, ',') but the function cannot be used in the script.&lt;/P&gt;&lt;P&gt;Has anyone ideas?&lt;/P&gt;&lt;P&gt;Just to clarify - I want to enable the user to select in a list box which dates they want to reload the data for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2012 15:43:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370544#M705370</guid>
      <dc:creator />
      <dc:date>2012-04-26T15:43:19Z</dc:date>
    </item>
    <item>
      <title>listbox selection to load certain data</title>
      <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370545#M705371</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 did something similar hope it helps;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My application takes start and end date&amp;nbsp; and puts them into a for loop and to create a inline calendar&amp;nbsp; which is stored in calendar.qvd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can create your calendar table and put your date field&amp;nbsp; into listbox so users can select what theyn wish...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brief example is below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*&lt;/P&gt;&lt;P&gt;Let A=1;&lt;/P&gt;&lt;P&gt;let nextperiod= V_Calendar_Start;&lt;/P&gt;&lt;P&gt;int_nextperiod =Interval(nextperiod);&lt;/P&gt;&lt;P&gt;int_V_Calendar_Start=Interval(V_Calendar_Start);&lt;/P&gt;&lt;P&gt;int_V_Calendar_End=Interval(addmonths(V_Calendar_End,1));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;For int_nextperiod =int_V_Calendar_Start to int_V_Calendar_End&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Calendar: &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD * INLINE [ID, EFFECTIVE_START_DATE, YEAR,MONTH,Composite &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp; $(A),$(Cal_date) 00:00:00,$(Cal_year),$(Cal_month),$(Composite)];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;EM&gt;A=A+1;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;nextperiod= addmonths (nextperiod,1);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;int_nextperiod =Interval(nextperiod);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;EM&gt;NEXT&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;EM&gt;store Calendar into QVD\Calendar.qvd (qvd);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2012 16:22:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370545#M705371</guid>
      <dc:creator />
      <dc:date>2012-04-26T16:22:17Z</dc:date>
    </item>
    <item>
      <title>listbox selection to load certain data</title>
      <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370546#M705372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;I have a loop created and a list of dates, eg 201202, 201203, 201204 etc.&lt;/P&gt;&lt;P&gt;My qvds are names 201202.qvd, 201203.qvd etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My issue is how do i translate my selections in this listbox into the dates on which I should perform my loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg.&amp;nbsp; I select 2 dates in my list box 201202 and 201203, my loop should then only reload the 201202 and 201203 qvds?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2012 16:34:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370546#M705372</guid>
      <dc:creator />
      <dc:date>2012-04-26T16:34:24Z</dc:date>
    </item>
    <item>
      <title>listbox selection to load certain data</title>
      <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370547#M705373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Firstly I would find how many values are selected in your list box by using GetSelectedCount(Your_Field Name)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then put this number in to a foor loop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get the selections on your list box by using ﻿ ﻿﻿﻿GetFieldSelections(Your_field_name)&amp;nbsp; into a variable ( Var_qvd) then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load *&lt;/P&gt;&lt;P&gt;from&lt;/P&gt;&lt;P&gt;.... myqvd_$(Var_qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2012 09:22:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370547#M705373</guid>
      <dc:creator />
      <dc:date>2012-04-27T09:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: listbox selection to load certain data</title>
      <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370548#M705374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi colgbre01,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Tyr the attached sample qvw file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I hope it might be helpful to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;BR /&gt; Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2012 10:06:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370548#M705374</guid>
      <dc:creator />
      <dc:date>2012-04-27T10:06:53Z</dc:date>
    </item>
    <item>
      <title>listbox selection to load certain data</title>
      <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370549#M705375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;The issue for this is that when the variable is created the script does not recognise the getfieldselections function?&amp;nbsp; this may work on a text box on the front end but when coming to a load it simply gives tries to load from:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;abc.getfieldselections(fieldname).qvd which obviously does not exist!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2012 10:29:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370549#M705375</guid>
      <dc:creator />
      <dc:date>2012-04-27T10:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: listbox selection to load certain data</title>
      <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370550#M705376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; could you resend as a zipped file and not 7zip please satish?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2012 10:32:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370550#M705376</guid>
      <dc:creator />
      <dc:date>2012-04-27T10:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: listbox selection to load certain data</title>
      <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370551#M705377</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; Please check the zipped file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;BR /&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2012 10:41:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370551#M705377</guid>
      <dc:creator />
      <dc:date>2012-04-27T10:41:20Z</dc:date>
    </item>
    <item>
      <title>Re: listbox selection to load certain data</title>
      <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370552#M705378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Great, &lt;/P&gt;&lt;P&gt;Looks exactly what i need...One more thing, could you post what the two variables are vSample and vABC?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2012 10:54:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370552#M705378</guid>
      <dc:creator />
      <dc:date>2012-04-27T10:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: listbox selection to load certain data</title>
      <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370553#M705379</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;vABC variable will holds the values selected in the field values of&amp;nbsp; "A" after clicking on the button .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vSample variable will holds the values of vABC values. &lt;/P&gt;&lt;P&gt;i.e; if vABC holds like 201202,201203 then vSample in first for loop holds 201202 and in second for loop holds 201203.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you understand now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2012 13:28:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370553#M705379</guid>
      <dc:creator />
      <dc:date>2012-04-27T13:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: listbox selection to load certain data</title>
      <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370554#M705380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;Venkat, &lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&amp;nbsp; i do understand where they come from but my issue is when i try and create them they are taken literally?&amp;nbsp; eg. if i create my variable vABC as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(getselectedcount(ABC)&amp;gt;0, concat(getfieldselections(ABC), ','), ﻿getfieldselections(ABC))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my script will not run as it will say cannot find file &lt;/P&gt;&lt;P&gt;abc.﻿if(getselectedcount(ABC)&amp;gt;0, concat(getfieldselections(ABC), ','), ﻿getfieldselections(ABC)).qvd?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is where i am failing in my load process.&lt;/P&gt;&lt;P&gt;I have a listbox of loaddates which are selectable but my expression is not calculated - it is just taken as a string?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2012 13:38:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370554#M705380</guid>
      <dc:creator />
      <dc:date>2012-04-27T13:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: listbox selection to load certain data</title>
      <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370555#M705381</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 think you might providing the expression in the variable itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; is it right ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2012 14:12:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370555#M705381</guid>
      <dc:creator />
      <dc:date>2012-04-27T14:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: listbox selection to load certain data</title>
      <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370556#M705382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I worked out on your problem. Please check the attached file. It gives you perfect solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2012 14:13:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370556#M705382</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2012-04-27T14:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: listbox selection to load certain data</title>
      <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370557#M705383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please go through Settings-&amp;gt; Doc properties -&amp;gt; Field Event Triggers -&amp;gt; For a particular field i.e &amp;lt;Has action &amp;gt;Add Action(On select) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you make your selections in listbox reload the application.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2012 14:20:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370557#M705383</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2012-04-27T14:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: listbox selection to load certain data</title>
      <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370558#M705384</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; Don't write your expression in variable "vABC" just leave it empty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Consider your LoadedDate field is "CreatedDate"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Go to Document properties --&amp;gt; Triggers --&amp;gt; FieldEventTriggers &lt;/P&gt;&lt;P&gt; And selecte the field "CreatedDate"&amp;nbsp; and Click &lt;STRONG&gt;On Select&lt;/STRONG&gt; Add&amp;nbsp; Action --&amp;gt; External --&amp;gt; Set Variable --&amp;gt;&amp;nbsp; Variable = vABC and Value = if(getselectedcount(ABC)&amp;gt;0, concat(getfieldselections(ABC), ','), ﻿getfieldselections(ABC)). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Hope now you will get the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Regards&lt;BR /&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2012 14:20:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370558#M705384</guid>
      <dc:creator />
      <dc:date>2012-04-27T14:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: listbox selection to load certain data</title>
      <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370559#M705385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Yes, &lt;/P&gt;&lt;P&gt;I think that is my issue.&amp;nbsp; I created my variable by putting my expression in the variable overview area?&amp;nbsp; Did you not do the same?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2012 14:23:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370559#M705385</guid>
      <dc:creator />
      <dc:date>2012-04-27T14:23:47Z</dc:date>
    </item>
    <item>
      <title>Re: listbox selection to load certain data</title>
      <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370560#M705386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Yes , not to place the expression in the variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; And please refer my previous post that gives a clear idea on&amp;nbsp; how and where to set the expression for variable "vABC".&lt;/P&gt;&lt;P&gt; &lt;BR /&gt;Regards&lt;BR /&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2012 14:35:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370560#M705386</guid>
      <dc:creator />
      <dc:date>2012-04-27T14:35:26Z</dc:date>
    </item>
    <item>
      <title>listbox selection to load certain data</title>
      <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370561#M705392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you both for your help.&amp;nbsp; I'm slightly unsure of vSample but will figure it out!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2012 15:00:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370561#M705392</guid>
      <dc:creator />
      <dc:date>2012-04-27T15:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: listbox selection to load certain data</title>
      <link>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370562#M705393</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; vSample is some thing like just holds the individual values of "vABC"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Ex:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For Each &lt;STRONG&gt;i&lt;/STRONG&gt; in 0,1,2&amp;nbsp;&amp;nbsp; //First loop it will run with 0 and fetches the qvd "0.qvd" , Second loop it will run with 1 and fetches the qvd data of "1.qvd", and so on..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * &lt;BR /&gt;From C:\$(&lt;STRONG&gt;i&lt;/STRONG&gt;).qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you might have an idea on the vSample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Regards&lt;BR /&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2012 15:19:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/listbox-selection-to-load-certain-data/m-p/370562#M705393</guid>
      <dc:creator />
      <dc:date>2012-04-27T15:19:41Z</dc:date>
    </item>
  </channel>
</rss>

