<?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 to get particular text from the full text using substring or other function? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-get-particular-text-from-the-full-text-using-substring-or/m-p/351059#M492454</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank u very much Jason,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used subfield function to get it.&lt;/P&gt;&lt;P&gt;=subfield(A_NAME,' ',-2) &amp;amp; ' ' &amp;amp; SubField(A_NAME,' ',-1)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 15 Jul 2012 10:14:26 GMT</pubDate>
    <dc:creator>udaya_kumar</dc:creator>
    <dc:date>2012-07-15T10:14:26Z</dc:date>
    <item>
      <title>How to get particular text from the full text using substring or other function?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-particular-text-from-the-full-text-using-substring-or/m-p/351053#M492448</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 field by name A_name, which has data like&lt;/P&gt;&lt;P&gt;market name1 product name1 TRx Volume,&lt;/P&gt;&lt;P&gt;market name2 product name2 TRx Share,&lt;/P&gt;&lt;P&gt;market name3 product name3 product NRx Volume,&lt;/P&gt;&lt;P&gt;market name1 product name2 product name1 NRx Share&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i want to take only TRx Volume, TRx Share, NRx Volume, NRx Share from those data separately.&lt;/P&gt;&lt;P&gt;how we can get that text from the data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jul 2012 06:38:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-particular-text-from-the-full-text-using-substring-or/m-p/351053#M492448</guid>
      <dc:creator>udaya_kumar</dc:creator>
      <dc:date>2012-07-15T06:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to get particular text from the full text using substring or other function?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-particular-text-from-the-full-text-using-substring-or/m-p/351054#M492449</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;Use the subfield function as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;subfield(A-name,' ',4)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Deepak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jul 2012 07:04:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-particular-text-from-the-full-text-using-substring-or/m-p/351054#M492449</guid>
      <dc:creator>deepakk</dc:creator>
      <dc:date>2012-07-15T07:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to get particular text from the full text using substring or other function?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-particular-text-from-the-full-text-using-substring-or/m-p/351055#M492450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepak,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for reply,&lt;/P&gt;&lt;P&gt;I treid this, but the problem is, i want to get TRx Volume.&lt;/P&gt;&lt;P&gt;I tried this, for some data, it has many words like&lt;/P&gt;&lt;P&gt;market name1 product name1 market name2 product name3 TRx Volume.&lt;/P&gt;&lt;P&gt;in this case, it is giving me 'market' as the result for ur expression.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jul 2012 07:13:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-particular-text-from-the-full-text-using-substring-or/m-p/351055#M492450</guid>
      <dc:creator>udaya_kumar</dc:creator>
      <dc:date>2012-07-15T07:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to get particular text from the full text using substring or other function?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-particular-text-from-the-full-text-using-substring-or/m-p/351056#M492451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just change the third parameter:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SubField(A-name,' ',6) - this will get the 6th bit of the string when broken up by spaces.&lt;/P&gt;&lt;P&gt;Bear in mind that NRx Share values and TRx Volume values will all be mixed in together by this method.&amp;nbsp; Maybe add another field so you'll have:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SubField(A-name,' ',5)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TxType //this will give TRx or NRx&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,SubField(A-name,' ',6)&amp;nbsp;&amp;nbsp;&amp;nbsp; AS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TxValue //this will give the Share or Volume number&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; etc&lt;/P&gt;&lt;P&gt;FROM....;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jul 2012 08:29:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-particular-text-from-the-full-text-using-substring-or/m-p/351056#M492451</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-07-15T08:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to get particular text from the full text using substring or other function?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-particular-text-from-the-full-text-using-substring-or/m-p/351057#M492452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jason,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for reply,&lt;/P&gt;&lt;P&gt;My problem is that, the data is not having fixed no. of words.&lt;/P&gt;&lt;P&gt;it differs for every row like&lt;/P&gt;&lt;P&gt;market name1 product name1 TRx Volume&lt;/P&gt;&lt;P&gt;market name2 product name2 market name2 product name1 TRx Share&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case, the subfield(field,'5') will give Volume but in second data, it will give name2.&lt;/P&gt;&lt;P&gt;so that is the problem i cannot use subfield.&lt;/P&gt;&lt;P&gt;Is there any function to match data like Start from TRx or NRx and take till end of that like Volume or Share?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jul 2012 08:57:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-particular-text-from-the-full-text-using-substring-or/m-p/351057#M492452</guid>
      <dc:creator>udaya_kumar</dc:creator>
      <dc:date>2012-07-15T08:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to get particular text from the full text using substring or other function?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-particular-text-from-the-full-text-using-substring-or/m-p/351058#M492453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, I see.&amp;nbsp; In that case, you could use Mid() with FindOneOf() or Indez(), or you could still use SubField() but with a different delimiter:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SubField(A-name,'TRx ',1)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TRxVolume&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,SubField(A-name,'NRx ',1)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NRxShare&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; etc&lt;/P&gt;&lt;P&gt;FROM....;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jul 2012 09:15:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-particular-text-from-the-full-text-using-substring-or/m-p/351058#M492453</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-07-15T09:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to get particular text from the full text using substring or other function?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-particular-text-from-the-full-text-using-substring-or/m-p/351059#M492454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank u very much Jason,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used subfield function to get it.&lt;/P&gt;&lt;P&gt;=subfield(A_NAME,' ',-2) &amp;amp; ' ' &amp;amp; SubField(A_NAME,' ',-1)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jul 2012 10:14:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-particular-text-from-the-full-text-using-substring-or/m-p/351059#M492454</guid>
      <dc:creator>udaya_kumar</dc:creator>
      <dc:date>2012-07-15T10:14:26Z</dc:date>
    </item>
  </channel>
</rss>

