<?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: Create From and To Filters from same field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Create-From-and-To-Filters-from-fields/m-p/1738256#M722611</link>
    <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/45458"&gt;@dena_reavis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi, this requires changing the existing fields with 'to' combinations, which is a lot of work. Also, this does not meet the requirement I have.&lt;/P&gt;&lt;P&gt;When a user selects One country in Source and another Country in Destination, and selects Roundtrip in a list box, it should show roundtrip as below:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Source&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Destination&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Australia&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Canada&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Source&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Destination&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Canada&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Australia&lt;/P&gt;</description>
    <pubDate>Mon, 24 Aug 2020 18:48:38 GMT</pubDate>
    <dc:creator>qlikwiz123</dc:creator>
    <dc:date>2020-08-24T18:48:38Z</dc:date>
    <item>
      <title>Create From and To Filters from fields</title>
      <link>https://community.qlik.com/t5/QlikView/Create-From-and-To-Filters-from-fields/m-p/1737198#M722609</link>
      <description>&lt;P&gt;I have two Fields that has Countries.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to create two Filters (Dropdown boxes)&lt;/P&gt;&lt;P&gt;Source and Destination. How can I create two different List boxes from the these tables such that&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;. If I select California in Source, it shouldn't show up in Destination List Box.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;. Also, how can I create One-way and Round trip Radio Buttons and if it is 'Round Trip', it should show Source and Destination Twice based on initial Source-Destination selections?&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;California to Floria - Roundtrip&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Source&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/STRONG&gt; &lt;STRONG&gt;Destination&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;California&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Florida&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Source&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Destination&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Florida&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; California&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-From-and-To-Filters-from-fields/m-p/1737198#M722609</guid>
      <dc:creator>qlikwiz123</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Create From and To Filters from same field</title>
      <link>https://community.qlik.com/t5/QlikView/Create-From-and-To-Filters-from-fields/m-p/1737510#M722610</link>
      <description>&lt;P&gt;If your source and destination are fields on the same record, you would be able to select source as CA in a list box and the other listbox will reduce to only those records that have FL. Here is some sample data. It might be a bit more involved if your field value on your real data is all in one field, but you could pull it apart using SubField, and if source and destination are equal, that might be RT, else OW.&amp;nbsp; Hope this is helpful.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Orders:&lt;BR /&gt;LOAD *,&lt;BR /&gt;If(Source=Dest,'Roundtrip','Oneway') as Trip_type&lt;BR /&gt;;&lt;BR /&gt;LOAD *,&lt;BR /&gt;SubField(descr,' to ',1) as Source,&lt;BR /&gt;SubField(descr,' to ',2) as Dest&lt;BR /&gt;;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;descr, order_id, qty&lt;BR /&gt;CA to FL, 123, 2000&lt;BR /&gt;CA to GA, 124, 2500&lt;BR /&gt;CA to CA, 125, 2100&lt;BR /&gt;FL to FL, 126, 2005&lt;BR /&gt;GA to FL, 127, 1900&lt;BR /&gt;];&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 20:19:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-From-and-To-Filters-from-fields/m-p/1737510#M722610</guid>
      <dc:creator>dena_reavis</dc:creator>
      <dc:date>2020-08-20T20:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: Create From and To Filters from same field</title>
      <link>https://community.qlik.com/t5/QlikView/Create-From-and-To-Filters-from-fields/m-p/1738256#M722611</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/45458"&gt;@dena_reavis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi, this requires changing the existing fields with 'to' combinations, which is a lot of work. Also, this does not meet the requirement I have.&lt;/P&gt;&lt;P&gt;When a user selects One country in Source and another Country in Destination, and selects Roundtrip in a list box, it should show roundtrip as below:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Source&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Destination&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Australia&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Canada&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Source&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Destination&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Canada&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Australia&lt;/P&gt;</description>
      <pubDate>Mon, 24 Aug 2020 18:48:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-From-and-To-Filters-from-fields/m-p/1738256#M722611</guid>
      <dc:creator>qlikwiz123</dc:creator>
      <dc:date>2020-08-24T18:48:38Z</dc:date>
    </item>
  </channel>
</rss>

