<?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: index function in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/index-function/m-p/813355#M1046801</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;It is case sensitive when use try like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Names&lt;/P&gt;&lt;P&gt;ali hammad ahmed &lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Index(NAME,'ali') //Because you use caps name ALI&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, 25 Nov 2014 10:14:33 GMT</pubDate>
    <dc:creator>its_anandrjs</dc:creator>
    <dc:date>2014-11-25T10:14:33Z</dc:date>
    <item>
      <title>index function</title>
      <link>https://community.qlik.com/t5/QlikView/index-function/m-p/813353#M1046799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have following field&lt;/P&gt;&lt;P&gt;Names&lt;/P&gt;&lt;P&gt;ali&lt;/P&gt;&lt;P&gt;hammad&lt;/P&gt;&lt;P&gt;ahmed&lt;/P&gt;&lt;P&gt;in text box i used =Index(NAME,'ALI') this show zero&lt;/P&gt;&lt;P&gt;i want to display the index number of the ali,hammad,ahmed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 09:39:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/index-function/m-p/813353#M1046799</guid>
      <dc:creator />
      <dc:date>2014-11-25T09:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: index function</title>
      <link>https://community.qlik.com/t5/QlikView/index-function/m-p/813354#M1046800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;this is beacuse ali is first word &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Index(NAME,'ali')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;for more see this&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor1282"&gt;&lt;/A&gt;&lt;A name="index"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;index(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;s1 , s2[ , n]&lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;Position of a substring. This function gives the starting position of the &lt;SPAN class="Italic"&gt;n&lt;/SPAN&gt;:th occurrence of substring &lt;SPAN class="Italic"&gt;s2&lt;/SPAN&gt; in string &lt;SPAN class="Italic"&gt;s1&lt;/SPAN&gt;. If &lt;SPAN class="Italic"&gt;n&lt;/SPAN&gt; is omitted, the first occurrence is assumed. If &lt;SPAN class="Italic"&gt;n&lt;/SPAN&gt; is negative, the search is made starting from the end of string &lt;SPAN class="Italic"&gt;s1&lt;/SPAN&gt;. The result is an integer. The positions in the string are numbered from &lt;SPAN class="Italic"&gt;1&lt;/SPAN&gt; and up. &lt;/P&gt;&lt;P class="example"&gt;Examples:&lt;/P&gt;&lt;P class="example"&gt;&lt;SPAN class="Code"&gt;index( 'abcdefg', 'a' )&lt;/SPAN&gt; returns &lt;SPAN class="Italic"&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;index( 'abcdefg', 'cd' )&lt;/SPAN&gt; returns &lt;SPAN class="Italic"&gt;3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;index( 'abcdabcd', 'b', 2 )&lt;/SPAN&gt; returns &lt;SPAN class="Italic"&gt;6&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;index( 'abcdabcd', 'b', -2 )&lt;/SPAN&gt; returns &lt;SPAN class="Italic"&gt;2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;left( Date, index( Date,'-') -1 )&lt;/SPAN&gt; where &lt;SPAN class="Italic"&gt;Date&lt;/SPAN&gt; = 1997-07-14 returns &lt;SPAN class="Italic"&gt;1997&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;mid( Date, index( Date, '-', 2 ) -2, 2 )&lt;/SPAN&gt; where &lt;SPAN class="Italic"&gt;Date&lt;/SPAN&gt; = 1997-07-14 returns &lt;SPAN class="Italic"&gt;07&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 09:55:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/index-function/m-p/813354#M1046800</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2014-11-25T09:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: index function</title>
      <link>https://community.qlik.com/t5/QlikView/index-function/m-p/813355#M1046801</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;It is case sensitive when use try like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Names&lt;/P&gt;&lt;P&gt;ali hammad ahmed &lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Index(NAME,'ali') //Because you use caps name ALI&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, 25 Nov 2014 10:14:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/index-function/m-p/813355#M1046801</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-11-25T10:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: index function</title>
      <link>https://community.qlik.com/t5/QlikView/index-function/m-p/813356#M1046802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI H&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;ammad&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this function &lt;/P&gt;&lt;P&gt;=FieldIndex('Name','harsha') if Name as Field and 'Harsha' as text to find&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Harsha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 10:18:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/index-function/m-p/813356#M1046802</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-11-25T10:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: index function</title>
      <link>https://community.qlik.com/t5/QlikView/index-function/m-p/1928327#M1218873</link>
      <description>&lt;P&gt;Just a small addition as there is a fault within the result provided. &lt;/P&gt;
&lt;P&gt;To test if a given substring exists within a string:&lt;/P&gt;
&lt;P class="example"&gt;&lt;SPAN class="Code"&gt;index( 'abcdefg', 'a' )&lt;/SPAN&gt; returns &lt;SPAN class="Italic"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (not 0)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="example"&gt;&lt;SPAN class="Code"&gt;index( 'abcdefg', 'x' )&lt;/SPAN&gt; returns &lt;SPAN class="Italic"&gt;&lt;STRONG&gt;0&amp;nbsp;&lt;/STRONG&gt;&amp;nbsp; ('x' does not exist within the string)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 06:53:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/index-function/m-p/1928327#M1218873</guid>
      <dc:creator>andries_bos</dc:creator>
      <dc:date>2022-05-10T06:53:48Z</dc:date>
    </item>
  </channel>
</rss>

