<?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: Parsing numbers from within text in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944901#M325485</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See if this works:&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; KeepChar(Original, '0123456789') as Number,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Trim(SubField(Original, KeepChar(Original, '0123456789'), 2)) as Text_After_Number;&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;Original&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Other action taken 9322 Counseled Appropriately&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Blah Blah 2024 Something Something&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Blah Blah 40394 Nothing Something&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Blah 2320 Nothing&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Blakch abldgfs dbshwnd 43049 Anything Nothing&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/109227_Capture.PNG" style="height: auto;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Dec 2015 20:53:02 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2015-12-16T20:53:02Z</dc:date>
    <item>
      <title>Parsing numbers from within text</title>
      <link>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944898#M325482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In a table named FollowUps, in a Column named FollowUpAction, I have values that usually look like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;"Other action taken 9322 Counseled Appropriately"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;When they look like that (Other action taken #### [further text], where [further text] is a few words that vary), I need to parse out the 4 digit number (always 4 digits) and the text after the 4 digit number into two different columns.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;1) How do I do that? &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2) How would I figure similar function/coding questions out if I didn't have this forum or needed an answer asap?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Thanks so much!&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 20:24:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944898#M325482</guid>
      <dc:creator>Margaret</dc:creator>
      <dc:date>2015-12-16T20:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: Parsing numbers from within text</title>
      <link>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944899#M325483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Parsing out the number should be fairly simple assuming rest of the portion won't have any numbers (like in your example)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;KeepChar(&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;FollowUpAction, '0123456789') as Number&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the second part, do you just need the text after the number (Counseled Appropritely)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 20:34:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944899#M325483</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-12-16T20:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: Parsing numbers from within text</title>
      <link>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944900#M325484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'll try that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, the text after the number.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 20:47:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944900#M325484</guid>
      <dc:creator>Margaret</dc:creator>
      <dc:date>2015-12-16T20:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: Parsing numbers from within text</title>
      <link>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944901#M325485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See if this works:&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; KeepChar(Original, '0123456789') as Number,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Trim(SubField(Original, KeepChar(Original, '0123456789'), 2)) as Text_After_Number;&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;Original&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Other action taken 9322 Counseled Appropriately&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Blah Blah 2024 Something Something&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Blah Blah 40394 Nothing Something&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Blah 2320 Nothing&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Blakch abldgfs dbshwnd 43049 Anything Nothing&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/109227_Capture.PNG" style="height: auto;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 20:53:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944901#M325485</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-12-16T20:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: Parsing numbers from within text</title>
      <link>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944902#M325486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this SQL or Qlikview's language?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because Qlikview doesn't seem to recognize "KeepChar". And this table is from an Excel spreadsheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is that why it's not working?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Als&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 22:51:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944902#M325486</guid>
      <dc:creator>Margaret</dc:creator>
      <dc:date>2015-12-16T22:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: Parsing numbers from within text</title>
      <link>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944903#M325487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;QlikView does have a KeepChar() function. Attached sample shows how this is working&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 23:06:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944903#M325487</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-12-16T23:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: Parsing numbers from within text</title>
      <link>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944904#M325488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check it out here: &lt;A href="http://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/KeepChar.htm?q=keepchar" title="http://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/KeepChar.htm?q=keepchar"&gt;QlikView ‒ KeepChar - script and chart function&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 23:47:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944904#M325488</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-12-16T23:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: Parsing numbers from within text</title>
      <link>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944905#M325489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried it and just got empty columns with the names I assigned:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD [Event ID], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Followup Immediate Action(s) Taken] as ActionTaken, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; KeepChar('ActionTaken', '0123456789') as ProviderID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Trim(SubField('ActionTaken', KeepChar('ActionTaken', '0123456789'), 2)) as Trend&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Dec 2015 00:06:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944905#M325489</guid>
      <dc:creator>Margaret</dc:creator>
      <dc:date>2015-12-18T00:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: Parsing numbers from within text</title>
      <link>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944906#M325490</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;one solution might be also:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_196918_Pic1.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/109380_QlikCommunity_Thread_196918_Pic1.JPG" style="height: auto; width: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14503984833192592" jivemacro_uid="_14503984833192592"&gt;
&lt;P&gt;table1:&lt;/P&gt;
&lt;P&gt;LOAD FollowUpAction,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Left(SubFollUpAct,4) as NumberField,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Mid(SubFollUpAct,6) as [further text];&lt;/P&gt;
&lt;P&gt;LOAD *,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SubField(FollowUpAction,'Other action taken ',2) as SubFollUpAct&lt;/P&gt;
&lt;P&gt;Inline [&lt;/P&gt;
&lt;P&gt;FollowUpAction&lt;/P&gt;
&lt;P&gt;Some action taken 9322 Counseled Appropriately&lt;/P&gt;
&lt;P&gt;Other action taken 9323 Counseled Appropriately&lt;/P&gt;
&lt;P&gt;Any action taken 9324 Counseled Appropriately&lt;/P&gt;
&lt;P&gt;Other action taken 9325 some Text after number&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&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;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Dec 2015 00:28:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944906#M325490</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-12-18T00:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: Parsing numbers from within text</title>
      <link>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944907#M325491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need the field name and not static text here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;LOAD [Event ID],&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Followup Immediate Action(s) Taken] as ActionTaken,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; KeepChar(&lt;SPAN style="color: #ff0000; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;[Followup Immediate Action(s) Taken]&lt;/SPAN&gt;, '0123456789') as ProviderID,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Trim(SubField(&lt;SPAN style="color: #ff0000; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;[Followup Immediate Action(s) Taken]&lt;/SPAN&gt;, KeepChar(&lt;SPAN style="color: #ff0000; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;[Followup Immediate Action(s) Taken]&lt;/SPAN&gt;, '0123456789'), 2)) as Trend&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Assuming this is &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Followup Immediate Action(s) Taken] is the field where we are trying to do this parsing &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Dec 2015 11:12:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944907#M325491</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-12-18T11:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: Parsing numbers from within text</title>
      <link>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944908#M325492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hah! I got it!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought I was doing what you said. But since I did this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Followup Immediate Action(s) Taken] as ActionTaken,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought I could use "Action Taken" as the new name of the field. But I guess it doesn't get renamed until the whole script loads?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you SOOOO much for your persistence and assistance!!!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Dec 2015 15:53:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944908#M325492</guid>
      <dc:creator>Margaret</dc:creator>
      <dc:date>2015-12-18T15:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: Parsing numbers from within text</title>
      <link>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944909#M325493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I didn't completely try this but thank you for taking the time to try to help me!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Dec 2015 15:57:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944909#M325493</guid>
      <dc:creator>Margaret</dc:creator>
      <dc:date>2015-12-18T15:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: Parsing numbers from within text</title>
      <link>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944910#M325494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not a problem &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am glad I was able to help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Dec 2015 16:54:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parsing-numbers-from-within-text/m-p/944910#M325494</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-12-18T16:54:00Z</dc:date>
    </item>
  </channel>
</rss>

