<?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: Split string to create filters in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75959#M771442</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It might be very inconvenient but can we use Alternate states to make it work somehow?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 May 2018 16:10:58 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2018-05-23T16:10:58Z</dc:date>
    <item>
      <title>Split string to create filters</title>
      <link>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75952#M771435</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 want to create individual listbox/filter - project, setup and testname from column "Parameter" i.e project listbox, setup listbox and testname listbox.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2.GIF" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/203138_2.GIF" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached dummy app.&lt;/P&gt;&lt;P&gt;Kindly help. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&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/Split-string-to-create-filters/m-p/75952#M771435</guid>
      <dc:creator>kinjal1645</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Split string to create filters</title>
      <link>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75953#M771436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But which Project is associated with which setup and which testname? Do they need to have any relation between them or if you select a setup, the other two become null?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2018 21:48:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75953#M771436</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-05-22T21:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: Split string to create filters</title>
      <link>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75954#M771437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;They are connected through testID.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2018 22:47:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75954#M771437</guid>
      <dc:creator>kinjal1645</dc:creator>
      <dc:date>2018-05-22T22:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: Split string to create filters</title>
      <link>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75955#M771438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use a GENERIC load like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;table1:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Generic&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; testID,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SubField(Parameter,'#',1),&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SubField(Parameter,'#',2)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;INLINE [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;testID, Parameter&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 001, testname#abc1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 001, setup#lab&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 001, project#P1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 002, testname#abc2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 002, setup#lab&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 002, project#P2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 003, testname#djt&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 003, setup#site&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 003, project#P3&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com/" rel="nofollow" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://qlikviewcookbook.com/" rel="nofollow" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 00:09:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75955#M771438</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2018-05-23T00:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: Split string to create filters</title>
      <link>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75956#M771439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rob but is there any other way to do this instead of changing script may be using expressions? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 13:16:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75956#M771439</guid>
      <dc:creator>kinjal1645</dc:creator>
      <dc:date>2018-05-23T13:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: Split string to create filters</title>
      <link>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75957#M771440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used "=subfield(if (wildMatch(Parameter,'*project*'),Parameter ),'#',2)" but couldn't create association between filters:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.GIF" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/203240_1.GIF" style="height: 187px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2.GIF" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/203241_2.GIF" style="height: 144px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;Can you help?!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 14:46:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75957#M771440</guid>
      <dc:creator>kinjal1645</dc:creator>
      <dc:date>2018-05-23T14:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Split string to create filters</title>
      <link>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75958#M771441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't think of any reasonable way to do this without changing the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 16:07:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75958#M771441</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2018-05-23T16:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: Split string to create filters</title>
      <link>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75959#M771442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It might be very inconvenient but can we use Alternate states to make it work somehow?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 16:10:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75959#M771442</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-05-23T16:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: Split string to create filters</title>
      <link>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75960#M771443</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;‌ I said "reasonable" &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 16:33:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75960#M771443</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2018-05-23T16:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: Split string to create filters</title>
      <link>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75961#M771444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wasn't questioning your response, but was curious if at all it is possible (using alternate state) &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;. By the way you are coming to Philly for Master Summit. I am keeping my fingers crossed that I am in the US to be able to make it to the Summit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 16:36:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-string-to-create-filters/m-p/75961#M771444</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-05-23T16:36:02Z</dc:date>
    </item>
  </channel>
</rss>

