<?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 can I get  566 and 2657 in string in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-can-I-get-566-and-2657-in-string/m-p/758935#M270070</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks you for your response!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Dec 2014 22:51:40 GMT</pubDate>
    <dc:creator>suzel404</dc:creator>
    <dc:date>2014-12-02T22:51:40Z</dc:date>
    <item>
      <title>How can I get  566 and 2657 in string</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-I-get-566-and-2657-in-string/m-p/758930#M270065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I get&amp;nbsp; 566 and 2657 in string : &lt;/P&gt;&lt;P&gt;5-300 |&amp;nbsp; 6-800 | 6-805&lt;/P&gt;&lt;P&gt;2-300 | 6-455 | 5-899 | 7-800&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 13:40:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-I-get-566-and-2657-in-string/m-p/758930#M270065</guid>
      <dc:creator>suzel404</dc:creator>
      <dc:date>2014-12-02T13:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: How can I get  566 and 2657 in string</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-I-get-566-and-2657-in-string/m-p/758931#M270066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Adding it to the string or taking it out?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 13:50:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-I-get-566-and-2657-in-string/m-p/758931#M270066</guid>
      <dc:creator>ThornOfCrowns</dc:creator>
      <dc:date>2014-12-02T13:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: How can I get  566 and 2657 in string</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-I-get-566-and-2657-in-string/m-p/758932#M270067</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;Load this&amp;nbsp; way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S:&lt;/P&gt;&lt;P&gt;LOAD String,Left(Trim(SubField(String,'|')),1) as New;&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;String&lt;/P&gt;&lt;P&gt;5-300 | 6-800 | 6-805&lt;/P&gt;&lt;P&gt;2-300 | 6-455 | 5-899 | 7-800&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;String,&lt;/P&gt;&lt;P&gt;Concat(New,'') as NewString&lt;/P&gt;&lt;P&gt;Resident S&lt;/P&gt;&lt;P&gt;Group By String;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table S;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Subfield.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/72538_Subfield.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 13:54:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-I-get-566-and-2657-in-string/m-p/758932#M270067</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-12-02T13:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: How can I get  566 and 2657 in string</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-I-get-566-and-2657-in-string/m-p/758933#M270068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not an elegant solution but:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left(SubField(PurgeChar([Field Name],' '),'|',1),1) &amp;amp; Left(SubField(PurgeChar([Field Name],' '),'|',2),1) &amp;amp; Left...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where [Field Name] is the name of your field above, and then repeat this as many times as you needed (in your example you'd need 4) changing the number after the '|' delimiter in the SubField function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 13:54:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-I-get-566-and-2657-in-string/m-p/758933#M270068</guid>
      <dc:creator>morganaaron</dc:creator>
      <dc:date>2014-12-02T13:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: How can I get  566 and 2657 in string</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-I-get-566-and-2657-in-string/m-p/758934#M270069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load PurgeChar(Left(Txt,1) &amp;amp; TextBetween(Txt,'|','-',1) &amp;amp; TextBetween(Txt,'|','-',2) &amp;amp; TextBetween(Txt,'|','-',3) &amp;amp; TextBetween(Txt,'|','-',4),' ') As Str;&lt;/P&gt;&lt;P&gt;Load * Inline [&lt;/P&gt;&lt;P&gt;Txt&lt;/P&gt;&lt;P&gt;5-300 |&amp;nbsp; 6-800 | 6-805&lt;/P&gt;&lt;P&gt;2-300 | 6-455 | 5-899 | 7-800 ];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 14:03:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-I-get-566-and-2657-in-string/m-p/758934#M270069</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2014-12-02T14:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: How can I get  566 and 2657 in string</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-I-get-566-and-2657-in-string/m-p/758935#M270070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks you for your response!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 22:51:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-I-get-566-and-2657-in-string/m-p/758935#M270070</guid>
      <dc:creator>suzel404</dc:creator>
      <dc:date>2014-12-02T22:51:40Z</dc:date>
    </item>
  </channel>
</rss>

