<?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: Advanced select from strings specific words in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Advanced-select-from-strings-specific-words/m-p/1761247#M591666</link>
    <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/17935"&gt;@MayilVahanan&lt;/a&gt;&amp;nbsp;, thank you so much that's working&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 12 Nov 2020 16:36:01 GMT</pubDate>
    <dc:creator>Micki</dc:creator>
    <dc:date>2020-11-12T16:36:01Z</dc:date>
    <item>
      <title>Advanced select from strings specific words</title>
      <link>https://community.qlik.com/t5/QlikView/Advanced-select-from-strings-specific-words/m-p/1761218#M591661</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have a string&amp;nbsp;&lt;/P&gt;&lt;P&gt;'27997:Google Chrome browser:Passed&amp;amp;&amp;amp;27997:MS Edge browser:Passed&amp;amp;&amp;amp;32163:Google Chrome browser:Passed&amp;amp;&amp;amp;32163:MS Edge browser:Passed&amp;amp;&amp;amp;32163:Safari browser for Mac:Not Run&amp;amp;&amp;amp;32128:Google Chrome browser:Not Run&amp;amp;&amp;amp;32128:MS Edge browser:Not Run&amp;amp;&amp;amp;32128:Safari browser for Mac:Not Run'&lt;/P&gt;&lt;P&gt;What i need to select all parts that started from the same number: like - 32163,&lt;/P&gt;&lt;P&gt;final result :&lt;/P&gt;&lt;P&gt;'32163:Google Chrome browser:Passed,32163:Safari browser for Mac:Not Run, 32163:MS Edge browser:Passed'&lt;/P&gt;&lt;P&gt;Does it possible without any loops?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Nov 2020 15:10:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Advanced-select-from-strings-specific-words/m-p/1761218#M591661</guid>
      <dc:creator>Micki</dc:creator>
      <dc:date>2020-11-12T15:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: Advanced select from strings specific words</title>
      <link>https://community.qlik.com/t5/QlikView/Advanced-select-from-strings-specific-words/m-p/1761235#M591662</link>
      <description>&lt;P&gt;Is it a single string or multiple ones? If it's a single string it might be useful to split them into multiple records and maybe also various fields. This could be easily done in the script with subfield() - the version with 2 parameters creates extra records and the one with 3 parameters returned the indexed string-part.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Thu, 12 Nov 2020 15:58:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Advanced-select-from-strings-specific-words/m-p/1761235#M591662</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2020-11-12T15:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: Advanced select from strings specific words</title>
      <link>https://community.qlik.com/t5/QlikView/Advanced-select-from-strings-specific-words/m-p/1761238#M591663</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28038"&gt;@marcus_sommer&lt;/a&gt;&amp;nbsp;, it's single string s in one column, i need just to do it as a single action and put in in one column&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Nov 2020 16:01:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Advanced-select-from-strings-specific-words/m-p/1761238#M591663</guid>
      <dc:creator>Micki</dc:creator>
      <dc:date>2020-11-12T16:01:08Z</dc:date>
    </item>
    <item>
      <title>Re: Advanced select from strings specific words</title>
      <link>https://community.qlik.com/t5/QlikView/Advanced-select-from-strings-specific-words/m-p/1761244#M591664</link>
      <description>&lt;P&gt;You mean to cut these parts from the rest of the string? Especially if the strings vary rather heavily in regard how many parts are concatenated and in which order and how many hits are possible it could become quite ugly to do this with any string-functions. Therefore I suggest to consider the above mentioned logic with subfield().&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Thu, 12 Nov 2020 16:22:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Advanced-select-from-strings-specific-words/m-p/1761244#M591664</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2020-11-12T16:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Advanced select from strings specific words</title>
      <link>https://community.qlik.com/t5/QlikView/Advanced-select-from-strings-specific-words/m-p/1761246#M591665</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/124906"&gt;@Micki&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;May be try like below&lt;/P&gt;&lt;P&gt;T:&lt;BR /&gt;LOAD String, If(SubField(Text, ':',1)= '32163', Text) as Text;&lt;BR /&gt;LOAD *, SubField(String, '&amp;amp;&amp;amp;') as Text Inline&lt;BR /&gt;[&lt;BR /&gt;String&lt;BR /&gt;27997:Google Chrome browser:Passed&amp;amp;&amp;amp;27997:MS Edge browser:Passed&amp;amp;&amp;amp;32163:Google Chrome browser:Passed&amp;amp;&amp;amp;32163:MS Edge browser:Passed&amp;amp;&amp;amp;32163:Safari browser for Mac:Not Run&amp;amp;&amp;amp;32128:Google Chrome browser:Not Run&amp;amp;&amp;amp;32128:MS Edge browser:Not Run&amp;amp;&amp;amp;32128:Safari browser for Mac:Not Run&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;LOAD Concat(Text, '&amp;amp;&amp;amp;') as FinalText Resident T;&lt;/P&gt;&lt;P&gt;Pls check the&amp;nbsp;FinalText&amp;nbsp; field , hope it helps&lt;/P&gt;</description>
      <pubDate>Thu, 12 Nov 2020 16:31:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Advanced-select-from-strings-specific-words/m-p/1761246#M591665</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2020-11-12T16:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: Advanced select from strings specific words</title>
      <link>https://community.qlik.com/t5/QlikView/Advanced-select-from-strings-specific-words/m-p/1761247#M591666</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/17935"&gt;@MayilVahanan&lt;/a&gt;&amp;nbsp;, thank you so much that's working&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Nov 2020 16:36:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Advanced-select-from-strings-specific-words/m-p/1761247#M591666</guid>
      <dc:creator>Micki</dc:creator>
      <dc:date>2020-11-12T16:36:01Z</dc:date>
    </item>
  </channel>
</rss>

