<?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: List Box - Combining Two Data Fields in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/List-Box-Combining-Two-Data-Fields/m-p/1321571#M824796</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With QV associative logic when you select any value from a list box it will be reflected and show the relevant possible values for the selected. Where exactly you want to show this data like in a table or other objects? Can you share a sample if possible with some expected output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Jul 2017 20:47:57 GMT</pubDate>
    <dc:creator>vishsaggi</dc:creator>
    <dc:date>2017-07-17T20:47:57Z</dc:date>
    <item>
      <title>List Box - Combining Two Data Fields</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Combining-Two-Data-Fields/m-p/1321569#M824794</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 have a data set that has columns for Home State and Business State.&amp;nbsp; I am interested in creating one list box based on "State" that users can limit the results to.&amp;nbsp; For example if someone selects Vermont from the list box....I want it to return any one who has a &lt;SPAN style="text-decoration: underline;"&gt;home&lt;/SPAN&gt; or a business address or &lt;SPAN style="text-decoration: underline;"&gt;both&lt;/SPAN&gt; in Vermont within the result set. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate any insight you can provide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best, &lt;/P&gt;&lt;P&gt;A&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/List-Box-Combining-Two-Data-Fields/m-p/1321569#M824794</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: List Box - Combining Two Data Fields</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Combining-Two-Data-Fields/m-p/1321570#M824795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashley,&lt;/P&gt;&lt;P&gt;A Search object might give you what you need. Add a search object with the two fields you want to search against and try it out.&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;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2017 20:47:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-Box-Combining-Two-Data-Fields/m-p/1321570#M824795</guid>
      <dc:creator>effinty2112</dc:creator>
      <dc:date>2017-07-17T20:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: List Box - Combining Two Data Fields</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Combining-Two-Data-Fields/m-p/1321571#M824796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With QV associative logic when you select any value from a list box it will be reflected and show the relevant possible values for the selected. Where exactly you want to show this data like in a table or other objects? Can you share a sample if possible with some expected output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2017 20:47:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-Box-Combining-Two-Data-Fields/m-p/1321571#M824796</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-07-17T20:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: List Box - Combining Two Data Fields</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Combining-Two-Data-Fields/m-p/1321572#M824797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be: Create another column by concatenating HOME and BUSINESS States. Then add a List Box and change default search mode to Wildcard. Whenever you search in the new column, any row with HOME OR BUSINESS in that state will get picked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;Fact:&lt;/P&gt;
&lt;P&gt;//Precedding load.&lt;/P&gt;
&lt;P&gt;//Concatenate both Home and Business into "States" Column&lt;/P&gt;
&lt;P&gt;Load *,Home&amp;amp;'-'&amp;amp;Business as States;&lt;/P&gt;
&lt;P&gt;Load * inline&lt;/P&gt;
&lt;P&gt;[ID,Home,Business&lt;/P&gt;
&lt;P&gt;1,VA,VA&lt;/P&gt;
&lt;P&gt;2,VA,MN&lt;/P&gt;
&lt;P&gt;3,CA,VA&lt;/P&gt;
&lt;P&gt;4,CA,MA&lt;/P&gt;
&lt;P&gt;5,IL,CA];&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result: (I searched for *VA*)&lt;/P&gt;&lt;P&gt;&lt;IMG alt="states.PNG" class="jive-image image-1" height="151" src="https://community.qlik.com/legacyfs/online/170463_states.PNG" style="height: 150.892px; width: 223px;" width="223" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2017 23:27:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-Box-Combining-Two-Data-Fields/m-p/1321572#M824797</guid>
      <dc:creator>manas_bn</dc:creator>
      <dc:date>2017-07-17T23:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: List Box - Combining Two Data Fields</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Combining-Two-Data-Fields/m-p/1321573#M824798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I didn't know about the search object feature! This would definitely work, but for the application I am building I needed it to be shown as a list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2017 13:04:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-Box-Combining-Two-Data-Fields/m-p/1321573#M824798</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-18T13:04:06Z</dc:date>
    </item>
  </channel>
</rss>

