<?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: How to create drop down menu for select my data SOURCE ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632438#M594758</link>
    <description>&lt;P&gt;Hi Sir&lt;/P&gt;&lt;P&gt;I think you can not view the image :- pls click on below&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.dropbox.com/s/ggj818s1y5jv8tl/IMG_2973.jpg?dl=0" target="_blank"&gt;https://www.dropbox.com/s/ggj818s1y5jv8tl/IMG_2973.jpg?dl=0&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 08 Oct 2019 11:01:07 GMT</pubDate>
    <dc:creator>paulyeo11</dc:creator>
    <dc:date>2019-10-08T11:01:07Z</dc:date>
    <item>
      <title>How to create drop down menu for select my data SOURCE ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632317#M594749</link>
      <description>&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;my QVW , have 20 SOURCE , May I know how to display 1 SOURCE , and when user click on the right side arrow of Box , it will list 20 SOURCE for selections.&lt;/P&gt;&lt;P&gt;May I know how to achieve this ?&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 06:43:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632317#M594749</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2019-10-08T06:43:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to create drop down menu for select my data SOURCE ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632360#M594750</link>
      <description>&lt;P&gt;maybe you can use the system field "$table"&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sysfield.png" style="width: 271px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/20875iF86F83D8645E1143/image-size/large?v=v2&amp;amp;px=999" role="button" title="sysfield.png" alt="sysfield.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;if you cannot see this field create an diagram object -&amp;gt; tab dimension -&amp;gt; tick show System fields&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="show_sysfields.png" style="width: 279px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/20876iE2DF84E11DA9D9DA/image-size/large?v=v2&amp;amp;px=999" role="button" title="show_sysfields.png" alt="show_sysfields.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;tim&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 08:13:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632360#M594750</guid>
      <dc:creator>zhadrakas</dc:creator>
      <dc:date>2019-10-08T08:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to create drop down menu for select my data SOURCE ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632363#M594751</link>
      <description>&lt;P&gt;alternatively you can do it in script if you would like to do more advanced things:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;//initial create Table
Fieldlist:
LOAD * INLINE [
    $Field name, $Table name, $Field number, $Table number, $Field|Table name, $Field|Table number
];

//Loop each table
For t = 1 to NoOfTables()

    LET vTable = TableName($(t)-1);
	//loop each field
	For f = 1 to NoOfFields('$(vTable)')
		//generate Meta Table
		Concatenate(Fieldlist)
		Load *,
		     [$Field name] &amp;amp; '|' &amp;amp; [$Table name] as [$Field|Table name],
			 [$Field number] &amp;amp; '|' &amp;amp; [$Table number] as [$Field|Table number]
		;
		Load Fieldname($(f),'$(vTable)') as [$Field name],
		     '$(vTable)' as [$Table name],
		     FieldNumber(Fieldname($(f),'$(vTable)'), '$(vTable)' ) as [$Field number],
		     num(TableNumber('$(vTable)')+1) as [$Table number] //should start with 1, so +1 
		AutoGenerate(1);
		
	next f
Next t&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 08 Oct 2019 08:17:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632363#M594751</guid>
      <dc:creator>zhadrakas</dc:creator>
      <dc:date>2019-10-08T08:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to create drop down menu for select my data SOURCE ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632407#M594752</link>
      <description>&lt;P&gt;Hi Sir&lt;/P&gt;&lt;P&gt;You script is very advance. Can you pls create a QVW and send me , so that i can know is it able to solve my problem ?&lt;/P&gt;&lt;P&gt;( I have try to reload your script , but i cannot see understand )&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 09:42:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632407#M594752</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2019-10-08T09:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to create drop down menu for select my data SOURCE ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632408#M594753</link>
      <description>&lt;P&gt;Hi Sir&lt;/P&gt;&lt;P&gt;So by default Qlik View does not able user to create a pull down menu ?&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 09:43:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632408#M594753</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2019-10-08T09:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to create drop down menu for select my data SOURCE ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632416#M594754</link>
      <description>&lt;P&gt;by default use the field "$table" as i mentioned in the first comment.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The user can work with that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 09:48:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632416#M594754</guid>
      <dc:creator>zhadrakas</dc:creator>
      <dc:date>2019-10-08T09:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to create drop down menu for select my data SOURCE ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632422#M594755</link>
      <description>&lt;P&gt;Hi Sir&lt;/P&gt;&lt;P&gt;I still cannot make the $ Table for pull down menu.&lt;/P&gt;&lt;P&gt;Enclosed my QVW&lt;/P&gt;&lt;P&gt;I need to make it a pull down menu for SOURCE field.&lt;/P&gt;&lt;P&gt;Paul Yeo&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 10:02:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632422#M594755</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2019-10-08T10:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to create drop down menu for select my data SOURCE ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632426#M594756</link>
      <description>&lt;P&gt;i think i dont understand what you mean by pull down.&lt;/P&gt;&lt;P&gt;please explain in detail what you want to achieve.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 10:26:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632426#M594756</guid>
      <dc:creator>zhadrakas</dc:creator>
      <dc:date>2019-10-08T10:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to create drop down menu for select my data SOURCE ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632433#M594757</link>
      <description>Hi Sir&lt;BR /&gt;&lt;BR /&gt;If you look at my QVW. My SOURCE field have 5 Label. ( In actual fact I have 20 label ) I am not able to display all value label . So I need the pull down or drop down . Where user can click on the box and it will have all value label list drop down . So user can select which one for analysis.&lt;BR /&gt;&lt;BR /&gt;Same like below image , when user click on SERVICES , there will be a list of items for them to select.&lt;BR /&gt;&lt;BR /&gt;[Image]&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Oct 2019 10:47:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632433#M594757</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2019-10-08T10:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to create drop down menu for select my data SOURCE ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632438#M594758</link>
      <description>&lt;P&gt;Hi Sir&lt;/P&gt;&lt;P&gt;I think you can not view the image :- pls click on below&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.dropbox.com/s/ggj818s1y5jv8tl/IMG_2973.jpg?dl=0" target="_blank"&gt;https://www.dropbox.com/s/ggj818s1y5jv8tl/IMG_2973.jpg?dl=0&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 11:01:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632438#M594758</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2019-10-08T11:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to create drop down menu for select my data SOURCE ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632447#M594759</link>
      <description>&lt;P&gt;ok got you.&lt;/P&gt;&lt;P&gt;i think you really want to use&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) a multibox with one field "SOURCE" and name it service&lt;/P&gt;&lt;P&gt;see examples&lt;/P&gt;&lt;P&gt;&lt;A href="https://discuss.analyticsvidhya.com/t/qlikview-dropdown-menu/1278" target="_blank"&gt;https://discuss.analyticsvidhya.com/t/qlikview-dropdown-menu/1278&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.qlikfix.com/2014/07/08/building-nicer-dynamic-multibox/" target="_blank"&gt;http://www.qlikfix.com/2014/07/08/building-nicer-dynamic-multibox/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;2) inputbox as a dropdown list&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-Creating-Analytics/Drop-Down-List/m-p/958461/highlight/true" target="_blank"&gt;https://community.qlik.com/t5/QlikView-Creating-Analytics/Drop-Down-List/m-p/958461/highlight/true&lt;/A&gt;&lt;/P&gt;&lt;P&gt;hope that helps you finding the right solution.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;tim&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 11:23:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632447#M594759</guid>
      <dc:creator>zhadrakas</dc:creator>
      <dc:date>2019-10-08T11:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to create drop down menu for select my data SOURCE ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632462#M594760</link>
      <description>&lt;P&gt;Hi Sir&lt;/P&gt;&lt;P&gt;Thank you very much for your sharing :-&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The last link "Hi, try using multibox." This is 102% i am looking for.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Paul&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 11:50:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-drop-down-menu-for-select-my-data-SOURCE/m-p/1632462#M594760</guid>
      <dc:creator>paulyeo11</dc:creator>
      <dc:date>2019-10-08T11:50:23Z</dc:date>
    </item>
  </channel>
</rss>

