<?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: which function I can use? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945307#M325622</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Sep 2015 05:02:34 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-09-28T05:02:34Z</dc:date>
    <item>
      <title>which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945299#M325614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a field with values like below&lt;/P&gt;&lt;P&gt;1234-abc&lt;/P&gt;&lt;P&gt;13422-monday&lt;/P&gt;&lt;P&gt;136647536-tuesday&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to display only the part before '-'&amp;nbsp; &lt;/P&gt;&lt;P&gt;eg) 1234&amp;nbsp; ,&amp;nbsp; 13422,&amp;nbsp; 136647536. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help me what function I can use to get above result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Sep 2015 06:29:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945299#M325614</guid>
      <dc:creator />
      <dc:date>2015-09-27T06:29:45Z</dc:date>
    </item>
    <item>
      <title>Re: which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945300#M325615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use SubField function here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SubField(FieldName, '-', 1) as FieldName&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Sep 2015 15:56:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945300#M325615</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-09-27T15:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945301#M325616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;=SubField(YourOriginalField, '-', 1)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Sep 2015 15:57:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945301#M325616</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-09-27T15:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945302#M325617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;= left(fieldname, (len(fieldname) - index(fieldname, '-'))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Sep 2015 15:59:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945302#M325617</guid>
      <dc:creator>oknotsen</dc:creator>
      <dc:date>2015-09-27T15:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945303#M325618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &lt;SPAN style="color: #ff0000;"&gt;SubField(FieldName, '-', 1) as Part1,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; SubField(FieldName, '-', 2) as Part2;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * Inline [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FieldName&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1234-abc&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;13422-monday&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;136647536-tuesday&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's output:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="100143" alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/100143_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Sep 2015 15:59:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945303#M325618</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-09-27T15:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945304#M325619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chintan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left(Value,index(Value,'-')-1) AS Partleft&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;Christoph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Sep 2015 16:07:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945304#M325619</guid>
      <dc:creator>chrisg</dc:creator>
      <dc:date>2015-09-27T16:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945305#M325620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sunny&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I use this in front end report ?&amp;nbsp; I want something which can be user in report and not script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Chintan Gala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2015 04:34:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945305#M325620</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-28T04:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945306#M325621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can use in the front end also .&lt;/P&gt;&lt;P&gt;subfield(filed_name,'-',1) use this expression in the list box and charts &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2015 05:01:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945306#M325621</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2015-09-28T05:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945307#M325622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2015 05:02:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945307#M325622</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-28T05:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945308#M325623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good discussion thread here. Please be sure to mark helpful and correct answers. &lt;/P&gt;&lt;P&gt;Sara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2015 05:16:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945308#M325623</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-28T05:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945309#M325624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes,U can use it in front end also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2015 05:27:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945309#M325624</guid>
      <dc:creator>nagarjuna_kotha</dc:creator>
      <dc:date>2015-09-28T05:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945310#M325625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;better way is create in script level to use further .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2015 05:30:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945310#M325625</guid>
      <dc:creator>nagarjuna_kotha</dc:creator>
      <dc:date>2015-09-28T05:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945311#M325626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;Use below script.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Tab:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;FiledName&lt;/P&gt;&lt;P&gt;1234-abc&lt;/P&gt;&lt;P&gt;13422-monday&lt;/P&gt;&lt;P&gt;136647536-tuesday];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tab1:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;KeepChar(FiledName,'0123456789') as FiledName1&lt;/P&gt;&lt;P&gt;Resident Tab;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2015 05:39:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945311#M325626</guid>
      <dc:creator>ChennaiahNallani</dc:creator>
      <dc:date>2015-09-28T05:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945312#M325627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use Keepchar in your script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KeepChar(YourFiled,'0123456789') as YourFiled&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2015 05:49:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945312#M325627</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-09-28T05:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945313#M325628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where exactly in front end?? Please helo..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2015 05:50:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945313#M325628</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-28T05:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945314#M325629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;U can Use this if its suits ur scenario &lt;/P&gt;&lt;P&gt;=KeepChar('1234-abc',0123456789)&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=SubField('1234-abc','-',1)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2015 06:01:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945314#M325629</guid>
      <dc:creator>nizamsha</dc:creator>
      <dc:date>2015-09-28T06:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945315#M325630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; You mentioned to use in expression. But the field is a dimension.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2015 06:06:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945315#M325630</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-28T06:06:00Z</dc:date>
    </item>
    <item>
      <title>Re: which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945316#M325631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. Give me some time. I am trying the sokution. Will inform once it is sccessful..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2015 06:12:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945316#M325631</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-28T06:12:00Z</dc:date>
    </item>
    <item>
      <title>Re: which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945317#M325632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sunny&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SubField(FieldName, '-', 1) as FieldName&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Above is not working for me in the script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2015 06:47:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945317#M325632</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-28T06:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: which function I can use?</title>
      <link>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945318#M325633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the funciton &lt;SPAN style="text-decoration: underline;"&gt;SubField&lt;/SPAN&gt;, check the attached document to see how it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Qlikview Help:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor1300"&gt;&lt;/A&gt;&lt;A class="Bold" name="subfield"&gt;&lt;SPAN style="color: #ffffff; background-color: #3399ff;"&gt;subfield&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;s, 'delimiter' [ , index ] &lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;In its three-parameter version, this script function returns a given substring from a larger string &lt;SPAN class="Italic"&gt;s&lt;/SPAN&gt; with delimiter &lt;SPAN class="Italic"&gt;'delimiter'&lt;/SPAN&gt;. &lt;SPAN class="Italic"&gt;index&lt;/SPAN&gt; is an optional integer denoting which of the substrings should be returned. If &lt;SPAN class="Italic"&gt;index&lt;/SPAN&gt; is omitted when&lt;SPAN style="font-weight: bold;"&gt; &lt;SPAN style="color: #ffffff; background-color: #3399ff;"&gt;subfield&lt;/SPAN&gt;&lt;/SPAN&gt; is used in a field expression in a &lt;SPAN style="font-weight: bold;"&gt;load&lt;/SPAN&gt; statement, the &lt;SPAN style="color: #ffffff; background-color: #3399ff; font-weight: bold;"&gt;subfield&lt;/SPAN&gt; function will cause the &lt;SPAN style="font-weight: bold;"&gt;load&lt;/SPAN&gt; statement to automatically generate one full record of input data for each substring that can be found in &lt;SPAN style="font-style: italic;"&gt;s&lt;/SPAN&gt;. &lt;/P&gt;&lt;P&gt;In its two-parameter version, the &lt;SPAN style="color: #ffffff; background-color: #3399ff; font-weight: bold;"&gt;subfield&lt;/SPAN&gt; function generates one record for each substring that can be taken from a larger string &lt;SPAN class="Italic"&gt;s&lt;/SPAN&gt; with the delimiter &lt;SPAN class="Italic"&gt;'delimiter'&lt;/SPAN&gt;. If several &lt;SPAN style="color: #ffffff; background-color: #3399ff; font-weight: bold;"&gt;subfield&lt;/SPAN&gt; functions are used in the same &lt;SPAN style="font-weight: bold;"&gt;load&lt;/SPAN&gt; statement, the Cartesian product of all combinations will be generated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="example"&gt;Examples:&lt;/P&gt;&lt;P&gt;(For three parameters)&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;&lt;SPAN style="color: #ffffff; background-color: #3399ff;"&gt;subfield&lt;/SPAN&gt;(S, ';' ,2)&lt;/SPAN&gt; returns '&lt;SPAN class="Italic"&gt;cde&lt;/SPAN&gt;' if S is '&lt;SPAN class="Italic"&gt;abc&lt;/SPAN&gt;;&lt;SPAN class="Italic"&gt;cde&lt;/SPAN&gt;;&lt;SPAN class="Italic"&gt;efg&lt;/SPAN&gt;'&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;&lt;SPAN style="color: #ffffff; background-color: #3399ff;"&gt;subfield&lt;/SPAN&gt;(S, ';' ,1)&lt;/SPAN&gt; returns NULL if S is an empty string&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;&lt;SPAN style="color: #ffffff; background-color: #3399ff;"&gt;subfield&lt;/SPAN&gt;(S, ';' ,1)&lt;/SPAN&gt; returns an empty string if S is ';'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2015 07:06:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/which-function-I-can-use/m-p/945318#M325633</guid>
      <dc:creator />
      <dc:date>2015-09-28T07:06:08Z</dc:date>
    </item>
  </channel>
</rss>

