<?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: Load Characters After String? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-Characters-After-String/m-p/1397984#M424206</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;notice that I did an edit due to limitations in the community editor for the &lt;STRONG&gt;&amp;amp; nbsp ;&lt;/STRONG&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is converted into a real space in the community editor so I had to do the trick with Chr(38) and so forth....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Aug 2017 21:40:15 GMT</pubDate>
    <dc:creator>petter</dc:creator>
    <dc:date>2017-08-28T21:40:15Z</dc:date>
    <item>
      <title>Load Characters After String?</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Characters-After-String/m-p/1397981#M424203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a field called DESCRIPTION that stores HTML formatted text (see below) and I want to be able to create 4 separate fields (one for each highlighted section below) with the data after it populated as the field value. Is there anyway to do this in QV?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was hoping to use something like left(DESCRIPTION, "Current State Summary:") ... to say pull everything between Current State Summary and Problem Statement as the value of Current State Summary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, with the image below (currently all part of DESCRIPTION field), I want this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); border-image: none; width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Current State Summary&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Problem Statement&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Proposed Solution&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Voting Statement&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;&lt;P&gt;Currently when a patient...&lt;/P&gt;&lt;P&gt;... /MD orders.&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;P&gt;This current Hospice...&lt;/P&gt;&lt;P&gt;...palliative care goals.&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;P&gt;Develop a power plan...&lt;/P&gt;&lt;P&gt;...physicians and bedside nurses.&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;P&gt;Requesting to update...&lt;/P&gt;&lt;P&gt;...hospice level of care.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;IMG alt="8-28-2017 12-27-50 PM.jpg" class="jive-image image-1" src="/legacyfs/online/174910_8-28-2017 12-27-50 PM.jpg" style="width: 620px; height: 760px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Aug 2017 20:54:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Characters-After-String/m-p/1397981#M424203</guid>
      <dc:creator>cbaqir</dc:creator>
      <dc:date>2017-08-28T20:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: Load Characters After String?</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Characters-After-String/m-p/1397982#M424204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should be able to extract the text by using the function TextBetween() like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TextBetween( TextBetween( Description , '&lt;STRONG&gt;&amp;lt;b&amp;gt;Current State Summary:&amp;lt;/b&amp;gt;&lt;/STRONG&gt;' , '&amp;lt;div' ) , '"&amp;gt;' , '&amp;lt;/span&amp;gt;&amp;lt;/font&amp;gt;') ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might also have to replace the&amp;nbsp; &lt;STRONG&gt; &amp;amp; nbsp ;&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp; which means non-breaking-space with just a regular space:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace( TextBetween( TextBetween( Description , '&amp;lt;b&amp;gt;Current State Summary:&amp;lt;/b&amp;gt;' , '&amp;lt;div' ) , '"&amp;gt;' , '&amp;lt;/span&amp;gt;&amp;lt;/font&amp;gt;')&amp;nbsp; , Chr(38)&amp;amp;'nbsp;' , ' ' ) ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The last three passages does not have a trailing colon immediately after the last character:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Replace( &lt;/SPAN&gt;TextBetween( TextBetween( Description , '&amp;lt;b&amp;gt;Problem Statement&amp;lt;/b&amp;gt;' , '&amp;lt;div' ) , '"&amp;gt;' , '&amp;lt;/span&amp;gt;&amp;lt;/font&amp;gt;')&lt;SPAN style="font-size: 13.3333px;"&gt; , Chr(38)&amp;amp;'nbsp;' , ' ' )&lt;/SPAN&gt; ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Aug 2017 21:35:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Characters-After-String/m-p/1397982#M424204</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2017-08-28T21:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: Load Characters After String?</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Characters-After-String/m-p/1397983#M424205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Aug 2017 21:36:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Characters-After-String/m-p/1397983#M424205</guid>
      <dc:creator>cbaqir</dc:creator>
      <dc:date>2017-08-28T21:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: Load Characters After String?</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Characters-After-String/m-p/1397984#M424206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;notice that I did an edit due to limitations in the community editor for the &lt;STRONG&gt;&amp;amp; nbsp ;&lt;/STRONG&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is converted into a real space in the community editor so I had to do the trick with Chr(38) and so forth....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Aug 2017 21:40:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Characters-After-String/m-p/1397984#M424206</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2017-08-28T21:40:15Z</dc:date>
    </item>
  </channel>
</rss>

