<?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: SUBSTR and INSTR in Qliksense in Visualization and Usability</title>
    <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126706#M27893</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With the same formula as above, this is what I see in table.&lt;/P&gt;&lt;P&gt;It works fine for I as there is no data so it displays -. But for R, F and Total it shows nothing, though I can see the column.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="208939" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/208939_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Jul 2018 13:16:30 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-07-26T13:16:30Z</dc:date>
    <item>
      <title>SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126698#M27885</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;I have field&amp;nbsp; "my_claim_count_string",which is in the format of 'O6OR3RF2F' where O is MY_CLAIM_COUNT_O which is 6.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so I added 'O6OR3RF2F' as "my_claim_count_string" in SQL select and in load I need to convert this oracle syntax to work in Qlik.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Oracle syntax:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; (&lt;/P&gt;&lt;P&gt;&amp;nbsp; case&lt;/P&gt;&lt;P&gt;&amp;nbsp; when INSTR(my_claim_count_string, 'O', 1, 1) &amp;gt; 0 and INSTR(my_claim_count_string, 'O', 1, 2) &amp;gt; 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; then TO_NUMBER(SUBSTR(my_claim_count_string, INSTR(my_claim_count_string, 'O', 1, 1) + 1, INSTR(my_claim_count_string, 'O', 1, 2) - INSTR(my_claim_count_string, 'O', 1, 1) - 1))&lt;/P&gt;&lt;P&gt;&amp;nbsp; else&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;&lt;P&gt;&amp;nbsp; end&lt;/P&gt;&lt;P&gt;&amp;nbsp; ) as MY_CLAIM_COUNT_O,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Qliksense syntax??&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I do this to get O6O ? I changed INSTR to subfield and INSTR to MID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin: 2pt 0px;"&gt;&lt;/P&gt;&lt;P style="margin: 2pt 0px;"&gt;&lt;/P&gt;&lt;P style="margin: 2pt 0px;"&gt;&lt;SPAN style="color: black; font-family: 'Segoe UI','sans-serif'; font-size: 10pt;"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 2pt 0px;"&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 19:05:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126698#M27885</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-25T19:05:41Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126699#M27886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Index(my_claim_count_string, 'O', 1) &amp;gt; 0 and Index(my_claim_count_string, 'O', 1) &amp;gt; 0, Mid(my_claim_count_string, Index(my_claim_count_string, 'O', 1), Index(my_claim_count_string, 'O', 2) - Index(my_claim_count_string, 'O', 1) + 1), 0) as String;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 19:40:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126699#M27886</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-25T19:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126700#M27887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am loading the data to check the result.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 20:19:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126700#M27887</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-25T20:19:08Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126701#M27888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if we do not know how much is the count in this format 'O6O' and be like OXO, what should be the expression like?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 20:55:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126701#M27888</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-25T20:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126702#M27889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I am not sure I understand what you are looking for?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 22:20:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126702#M27889</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-25T22:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126703#M27890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;I had to convert this for whole O6OR3RF2F', O worked but R , F , I and Total does not work in Qlik but works in oracle&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oracle:&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;&amp;nbsp; case &lt;/P&gt;&lt;P&gt;&amp;nbsp; when INSTR(my_claim_count_string, 'O', 1, 1) &amp;gt; 0 and INSTR(my_claim_count_string, 'O', 1, 2) &amp;gt; 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; then TO_NUMBER(SUBSTR(my_claim_count_string, INSTR(my_claim_count_string, 'O', 1, 1) + 1, INSTR(my_claim_count_string, 'O', 1, 2) - INSTR(my_claim_count_string, 'O', 1, 1) - 1))&lt;/P&gt;&lt;P&gt;&amp;nbsp; else&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;&lt;P&gt;&amp;nbsp; end&lt;/P&gt;&lt;P&gt;&amp;nbsp; ) as MY_CLAIM_COUNT_O,&lt;/P&gt;&lt;P&gt;&amp;nbsp; (&lt;/P&gt;&lt;P&gt;&amp;nbsp; case &lt;/P&gt;&lt;P&gt;&amp;nbsp; when INSTR(my_claim_count_string, 'R', 1, 1) &amp;gt; 0 and INSTR(my_claim_count_string, 'R', 1, 2) &amp;gt; 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; then TO_NUMBER(SUBSTR(my_claim_count_string, INSTR(my_claim_count_string, 'R', 1, 1) + 1, INSTR(my_claim_count_string, 'R', 1, 2) - INSTR(my_claim_count_string, 'R', 1, 1) - 1))&lt;/P&gt;&lt;P&gt;&amp;nbsp; else&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;&lt;P&gt;&amp;nbsp; end&lt;/P&gt;&lt;P&gt;&amp;nbsp; ) as MY_CLAIM_COUNT_R,&lt;/P&gt;&lt;P&gt;&amp;nbsp; (&lt;/P&gt;&lt;P&gt;&amp;nbsp; case &lt;/P&gt;&lt;P&gt;&amp;nbsp; when INSTR(my_claim_count_string, 'F', 1, 1) &amp;gt; 0 and INSTR(my_claim_count_string, 'F', 1, 2) &amp;gt; 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; then TO_NUMBER(SUBSTR(my_claim_count_string, INSTR(my_claim_count_string, 'F', 1, 1) + 1, INSTR(my_claim_count_string, 'F', 1, 2) - INSTR(my_claim_count_string, 'F', 1, 1) - 1))&lt;/P&gt;&lt;P&gt;&amp;nbsp; else&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;&lt;P&gt;&amp;nbsp; end&lt;/P&gt;&lt;P&gt;&amp;nbsp; ) as MY_CLAIM_COUNT_F,&lt;/P&gt;&lt;P&gt;&amp;nbsp; (&lt;/P&gt;&lt;P&gt;&amp;nbsp; case &lt;/P&gt;&lt;P&gt;&amp;nbsp; when INSTR(my_claim_count_string, 'I', 1, 1) &amp;gt; 0 and INSTR(my_claim_count_string, 'I', 1, 2) &amp;gt; 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; then TO_NUMBER(SUBSTR(my_claim_count_string, INSTR(my_claim_count_string, 'I', 1, 1) + 1, INSTR(my_claim_count_string, 'I', 1, 2) - INSTR(my_claim_count_string, 'I', 1, 1) - 1))&lt;/P&gt;&lt;P&gt;&amp;nbsp; else&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;&lt;P&gt;&amp;nbsp; end&lt;/P&gt;&lt;P&gt;&amp;nbsp; ) as MY_CLAIM_COUNT_I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Qlik :&lt;/P&gt;&lt;P&gt;&amp;nbsp; If(Index(my_claim_count_string, 'O', 1) &amp;gt; 0 and Index(my_claim_count_string, 'O', 1) &amp;gt; 0, Mid(my_claim_count_string, Index(my_claim_count_string, 'O', 1), &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Index(my_claim_count_string, 'O', 2) - Index(my_claim_count_string, 'O', 1) + 1), 0) as "MY_CLAIM_COUNT_O",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Index(my_claim_count_string, 'R', 1) &amp;gt; 0 and Index(my_claim_count_string, 'R', 1) &amp;gt; 0, Mid(my_claim_count_string, Index(my_claim_count_string, 'R', 1), &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Index(my_claim_count_string, 'R', 2) - Index(my_claim_count_string, 'R', 1) + 1), 0) as "MY_CLAIM_COUNT_R",&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; If(Index(my_claim_count_string, 'F', 1) &amp;gt; 0 and Index(my_claim_count_string, 'F', 1) &amp;gt; 0, Mid(my_claim_count_string, Index(my_claim_count_string, 'F', 1), &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Index(my_claim_count_string, 'F', 2) - Index(my_claim_count_string, 'F', 1) + 1), 0) as "MY_CLAIM_COUNT_F",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Index(my_claim_count_string, 'I', 1) &amp;gt; 0 and Index(my_claim_count_string, 'I', 1) &amp;gt; 0, Mid(my_claim_count_string, Index(my_claim_count_string, 'I', 1), &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Index(my_claim_count_string, 'I', 2) - Index(my_claim_count_string, 'I', 1) + 1), 0) as "MY_CLAIM_COUNT_I",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ( If(Index(my_claim_count_string, 'O', 1) &amp;gt; 0 and Index(my_claim_count_string, 'O', 1) &amp;gt; 0, Mid(my_claim_count_string, Index(my_claim_count_string, 'O', 1), &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Index(my_claim_count_string, 'O', 2) - Index(my_claim_count_string, 'O', 1) + 1), 0)&amp;nbsp; +&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Index(my_claim_count_string, 'R', 1) &amp;gt; 0 and Index(my_claim_count_string, 'R', 1) &amp;gt; 0, Mid(my_claim_count_string, Index(my_claim_count_string, 'R', 1), &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Index(my_claim_count_string, 'R', 2) - Index(my_claim_count_string, 'R', 1) + 1), 0) + &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Index(my_claim_count_string, 'F', 1) &amp;gt; 0 and Index(my_claim_count_string, 'F', 1) &amp;gt; 0, Mid(my_claim_count_string, Index(my_claim_count_string, 'F', 1), &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Index(my_claim_count_string, 'F', 2) - Index(my_claim_count_string, 'F', 1) + 1), 0) +&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Index(my_claim_count_string, 'I', 1) &amp;gt; 0 and Index(my_claim_count_string, 'I', 1) &amp;gt; 0, Mid(my_claim_count_string, Index(my_claim_count_string, 'I', 1), &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Index(my_claim_count_string, 'I', 2) - Index(my_claim_count_string, 'I', 1) + 1), 0)) as "MY_CLAIM_COUNT_TOTAL"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please help?&lt;/P&gt;&lt;P&gt;Values in db from query is O is 6, R is 3, F is 2 , I is 0 and total is 11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 03:05:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126703#M27890</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-26T03:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126704#M27891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 28.6924px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;You can try this&lt;/P&gt;&lt;P style="font-size: 28.6924px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 28.6924px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; If(Index(my_claim_count_string, 'O', 1) &amp;gt; 0 and Index(my_claim_count_string, 'O', 2) &amp;gt; 0, Mid(my_claim_count_string, Index(my_claim_count_string, 'O', 1)+1,&lt;/P&gt;&lt;P style="font-size: 28.6924px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Index(my_claim_count_string, 'O', 2) - Index(my_claim_count_string, 'O', 1) + 1), 0) as "MY_CLAIM_COUNT_O",&lt;/P&gt;&lt;P style="font-size: 28.6924px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;For your all field and for total you can calculate total in frontend expression like sum(MY_CLAIM_COUNT_O)+sum(MY_CLAIM_COUNT_R)+etc. to calculàte&amp;nbsp; total fields&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 06:04:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126704#M27891</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-26T06:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126705#M27892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It worked for O, but not R? Would you be able to share a sample to check?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 11:09:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126705#M27892</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-26T11:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126706#M27893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With the same formula as above, this is what I see in table.&lt;/P&gt;&lt;P&gt;It works fine for I as there is no data so it displays -. But for R, F and Total it shows nothing, though I can see the column.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="208939" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/208939_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 13:16:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126706#M27893</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-26T13:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126707#M27894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lol okay... don't know what to say... I have no idea what you working with &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 13:30:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126707#M27894</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-26T13:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126708#M27895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is what I see now. could you please add I,F ,R ant total in the app where you added O and check if you see the same thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="208958" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/208958_pastedImage_1.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 14:15:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126708#M27895</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-26T14:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126709#M27896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;check if you see the same thing.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG class="jive-image image-1" height="168" src="https://community.qlik.com/legacyfs/online/208959_pastedImage_1.png" style="max- max-width: 1106px;" width="1106" /&gt;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can confirm that I see the same thing from your screenshot which you have pasted above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 14:21:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126709#M27896</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-26T14:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126710#M27897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to get this count in Qlik ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/208960_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 14:35:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126710#M27897</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-26T14:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126711#M27898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think we are going to continue playing the game where you are going to pretend that you have not read what I am saying and I am going to pretend that I have not read what you are saying. Having said that, the answer to your above questions is the following&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;How to get this count in Qlik ?&lt;/P&gt;

&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;We are going to take a sky dive to get this done &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 14:40:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126711#M27898</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-26T14:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126712#M27899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 14:43:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126712#M27899</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-26T14:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126713#M27900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;If(Index(my_claim_count_string, 'O', 1) &amp;gt; 0 and Index(my_claim_count_string, 'O', 1)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG&gt; Index(my_claim_count_string, 'O', 1)&lt;/STRONG&gt;+1, should not the number start from here , because both the if is identical here.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 16:06:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126713#M27900</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-26T16:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126714#M27901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 16:07:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126714#M27901</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-26T16:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126715#M27902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Made no difference. Instead of O6O we need to get 6. I mean to say there will be N number of O and we need the count of that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me add +1 here as well&lt;/P&gt;&lt;P&gt;Mid(my_claim_count_string, Index(my_claim_count_string, 'O', 1)+1 and see&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 16:23:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126715#M27902</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-26T16:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126716#M27903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Once again, I want to help you... but all I am asking for you is to give me 2-3 different values and what do you expect to see out of it.... because I am not entirely sure what you are looking to get.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 16:25:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126716#M27903</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-07-26T16:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR and INSTR in Qliksense</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126717#M27904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Suppose there is OOOOOO, then count should give me 6 .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 16:36:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/SUBSTR-and-INSTR-in-Qliksense/m-p/126717#M27904</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-26T16:36:06Z</dc:date>
    </item>
  </channel>
</rss>

