<?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 extract a value from a data/string field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39977#M606461</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It all depends on the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the number is always between the same 2 words you can use those words with the textbetween function.&lt;/P&gt;&lt;P&gt;If it is always in the same spot with the same amount of '_' delimiters before it. Then use the subfield function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If none of these apply you will need to figure out how it is structured and how you can find it. for example if it is always the first number with a length more than 3 you can use a comination of subfield,len and isnum to find it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Apr 2018 13:04:40 GMT</pubDate>
    <dc:creator>bramkn</dc:creator>
    <dc:date>2018-04-16T13:04:40Z</dc:date>
    <item>
      <title>How to extract a value from a data/string field</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39970#M606454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a specific field named Carl_Combined_Key which has values like :&lt;/P&gt;&lt;P&gt;ID_1_TNO_93349345_RPK_1232_EPK_1111_CAR_ID_22.&lt;/P&gt;&lt;P&gt;How can I only extract and display&amp;nbsp; 93349345 only from the whole value&lt;/P&gt;&lt;P&gt;What function should I use, subsfield or trim..Can anyone please explain &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 12:25:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39970#M606454</guid>
      <dc:creator>trishita</dc:creator>
      <dc:date>2018-04-16T12:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract a value from a data/string field</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39971#M606455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;A:&lt;/P&gt;&lt;P&gt;LOAD *,SubField(a,'_',4) as new;&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;a&lt;/P&gt;&lt;P&gt;ID_1_TNO_93349345_RPK_1232_EPK_1111_CAR_ID_22&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 12:29:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39971#M606455</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2018-04-16T12:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract a value from a data/string field</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39972#M606456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TextBetween('&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;ID_1_TNO_93349345_RPK_1232_EPK_1111_CAR_ID_22','TNO_','_RPK')&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 12:38:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39972#M606456</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2018-04-16T12:38:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract a value from a data/string field</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39973#M606457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The script is:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;COMBINED_KEY,&lt;/P&gt;&lt;P&gt;FUEL_COMBINED_KEY,&lt;/P&gt;&lt;P&gt;FC_CONSUMPTIVE_ENGINE_ID,&lt;/P&gt;&lt;P&gt;FC_MASS,&lt;/P&gt;&lt;P&gt;FC_FUEL_CONSUMPTION_IN_TONS,&lt;/P&gt;&lt;P&gt;FC_VALID_FROM_UTC,&lt;/P&gt;&lt;P&gt;FC_VALID_TO_UTC,&lt;/P&gt;&lt;P&gt;FC_VALID_FROM_TIMEZONE,&lt;/P&gt;&lt;P&gt;FC_VALID_TO_TIMEZONE&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[$(vG.QVDPath)MO_NI_FUEL_CONSUMPTION_VIEW.qvd]&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;here&amp;nbsp; ID_1_TNO_93349345_RPK_1232_EPK_1111_CAR_ID_22 corresponds to COMBINED_KEY..so how can I modify the script....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 12:40:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39973#M606457</guid>
      <dc:creator>trishita</dc:creator>
      <dc:date>2018-04-16T12:40:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract a value from a data/string field</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39974#M606458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;LOAD*&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;subfield(COMBINED_KEY,'_',4)&amp;nbsp; as NewCombinedKey;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;then load all&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 12:43:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39974#M606458</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2018-04-16T12:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract a value from a data/string field</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39975#M606459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;COMBINED_KEY,&lt;/P&gt;&lt;P&gt;TextBetween(COMBINED_KEY,'TNO_','_RPK') AS COMBINED_KEY_NUMERIC,&lt;/P&gt;&lt;P&gt;FUEL_COMBINED_KEY,&lt;/P&gt;&lt;P&gt;FC_CONSUMPTIVE_ENGINE_ID,&lt;/P&gt;&lt;P&gt;FC_MASS,&lt;/P&gt;&lt;P&gt;FC_FUEL_CONSUMPTION_IN_TONS,&lt;/P&gt;&lt;P&gt;FC_VALID_FROM_UTC,&lt;/P&gt;&lt;P&gt;FC_VALID_TO_UTC,&lt;/P&gt;&lt;P&gt;FC_VALID_FROM_TIMEZONE,&lt;/P&gt;&lt;P&gt;FC_VALID_TO_TIMEZONE&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[$(vG.QVDPath)MO_NI_FUEL_CONSUMPTION_VIEW.qvd]&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 12:43:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39975#M606459</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2018-04-16T12:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract a value from a data/string field</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39976#M606460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what operation should I impose on the data field Combined_Key but not on individual data as the table has tonnes of data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 12:45:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39976#M606460</guid>
      <dc:creator>trishita</dc:creator>
      <dc:date>2018-04-16T12:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract a value from a data/string field</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39977#M606461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It all depends on the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the number is always between the same 2 words you can use those words with the textbetween function.&lt;/P&gt;&lt;P&gt;If it is always in the same spot with the same amount of '_' delimiters before it. Then use the subfield function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If none of these apply you will need to figure out how it is structured and how you can find it. for example if it is always the first number with a length more than 3 you can use a comination of subfield,len and isnum to find it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 13:04:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39977#M606461</guid>
      <dc:creator>bramkn</dc:creator>
      <dc:date>2018-04-16T13:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract a value from a data/string field</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39978#M606462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Fuel_Consumption_View:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;Load&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;COMBINED_KEY&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FUEL_COMBINED_KEY&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;TextBetween&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FUEL_COMBINED_KEY&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'TMO_','_RPK') &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;AS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;IMO_NO_FUEL_CONSUMPTION&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FC_CONSUMPTIVE_ENGINE_ID&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FC_MASS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FC_FUEL_CONSUMPTION_IN_TONS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FC_VALID_FROM_UTC&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FC_VALID_TO_UTC&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FC_VALID_FROM_TIMEZONE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FC_VALID_TO_TIMEZONE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[$(vG.QVDPath)MO_NI_FUEL_CONSUMPTION_VIEW.qvd]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;BR /&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;qvd&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;);&lt;BR /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;ITS POPULATING ALL DATA EXCEPT THE &lt;SPAN style="color: #800000; font-size: 8pt;"&gt;IMO_NO_FUEL_CONSUMPTION&lt;/SPAN&gt; ::ITS NOT WORKING&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 13:08:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39978#M606462</guid>
      <dc:creator>trishita</dc:creator>
      <dc:date>2018-04-16T13:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract a value from a data/string field</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39979#M606463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please provide some sample field value&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 13:14:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39979#M606463</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2018-04-16T13:14:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract a value from a data/string field</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39980#M606464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Fuel_Consumption_View:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;Load&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;COMBINED_KEY&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FUEL_COMBINED_KEY&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-size: 8pt;"&gt;//TextBetween(FUEL_COMBINED_KEY,'TMO_','_RPK') AS FUEL_COMBINED_KEY_NUMERIC,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;subfield&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;COMBINED_KEY&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'_',4)&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;NewCombinedKey&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FC_CONSUMPTIVE_ENGINE_ID&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FC_MASS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FC_FUEL_CONSUMPTION_IN_TONS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FC_VALID_FROM_UTC&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FC_VALID_TO_UTC&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FC_VALID_FROM_TIMEZONE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FC_VALID_TO_TIMEZONE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[$(vG.QVDPath)MO_NI_FUEL_CONSUMPTION_VIEW.qvd]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;BR /&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;qvd&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;);&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; This worked..Thanks for the support&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 13:28:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39980#M606464</guid>
      <dc:creator>trishita</dc:creator>
      <dc:date>2018-04-16T13:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract a value from a data/string field</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39981#M606465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the support&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 13:28:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-a-value-from-a-data-string-field/m-p/39981#M606465</guid>
      <dc:creator>trishita</dc:creator>
      <dc:date>2018-04-16T13:28:42Z</dc:date>
    </item>
  </channel>
</rss>

