<?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 Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Table/m-p/1027133#M936134</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ALl&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the script level&amp;nbsp; I&amp;nbsp; want to split name in to two columns first name and last name&amp;nbsp; or i can reverse the name itself ? and also under the field Petent i want to have one more field where upon DL needs to be replaced by DELL&lt;/P&gt;&lt;P&gt;and RR needs to be replaced by RARE.&lt;/P&gt;&lt;P&gt;PLease find the attachment&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Feb 2016 12:18:56 GMT</pubDate>
    <dc:creator>smilingjohn</dc:creator>
    <dc:date>2016-02-25T12:18:56Z</dc:date>
    <item>
      <title>Table</title>
      <link>https://community.qlik.com/t5/QlikView/Table/m-p/1027133#M936134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ALl&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the script level&amp;nbsp; I&amp;nbsp; want to split name in to two columns first name and last name&amp;nbsp; or i can reverse the name itself ? and also under the field Petent i want to have one more field where upon DL needs to be replaced by DELL&lt;/P&gt;&lt;P&gt;and RR needs to be replaced by RARE.&lt;/P&gt;&lt;P&gt;PLease find the attachment&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 12:18:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table/m-p/1027133#M936134</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2016-02-25T12:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: Table</title>
      <link>https://community.qlik.com/t5/QlikView/Table/m-p/1027134#M936135</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;&lt;/P&gt;&lt;P&gt;LOAD Petent, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; replace(replace(Petent, 'DL', 'DELL'), 'RR', 'RARE') as PetentFix,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; subfield(Name, '&amp;nbsp; ', 1) as firstname,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; subfield(Name, '&amp;nbsp; ', -1) as lastname&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;FROM&lt;BR /&gt;&lt;D&gt;&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1);&lt;/D&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 12:25:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table/m-p/1027134#M936135</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2016-02-25T12:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: Table</title>
      <link>https://community.qlik.com/t5/QlikView/Table/m-p/1027135#M936136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;like this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 12:26:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table/m-p/1027135#M936136</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-25T12:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: Table</title>
      <link>https://community.qlik.com/t5/QlikView/Table/m-p/1027136#M936137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For 2nd part, try with replace() as suggested by &lt;A _jive_internal="true" href="https://community.qlik.com/people/Colin_Albert"&gt;Colin Albert&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are having list of values..then create a inline in script and link it...like?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * inline&lt;/P&gt;&lt;P&gt;[Petent, Desc&lt;/P&gt;&lt;P&gt;DL, Dell&lt;/P&gt;&lt;P&gt;RR, Rare&lt;/P&gt;&lt;P&gt;CC, CabinClass&lt;/P&gt;&lt;P&gt;FC, FirstClass&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 12:29:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table/m-p/1027136#M936137</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-25T12:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: Table</title>
      <link>https://community.qlik.com/t5/QlikView/Table/m-p/1027137#M936138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using subfield with -1 for lastname will work if the name has a middle name.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 12:29:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table/m-p/1027137#M936138</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2016-02-25T12:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: Table</title>
      <link>https://community.qlik.com/t5/QlikView/Table/m-p/1027138#M936139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Colin,&lt;/P&gt;&lt;P&gt;Its working &lt;/P&gt;&lt;P&gt;Is ther any way to reverse the name&amp;nbsp; for example Under Field Name it is = &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="111"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="111"&gt;Wright John&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt; And the out put should be like John Wright&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 12:35:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table/m-p/1027138#M936139</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2016-02-25T12:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: Table</title>
      <link>https://community.qlik.com/t5/QlikView/Table/m-p/1027139#M936140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;like this?&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/96012"&gt;Reverse string&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 12:40:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table/m-p/1027139#M936140</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-25T12:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Table</title>
      <link>https://community.qlik.com/t5/QlikView/Table/m-p/1027140#M936141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not easy to swap the order unless all data is surname first.&lt;/P&gt;&lt;P&gt;The Reverse String solution suggested by &lt;A href="https://community.qlik.com/qlik-users/147249"&gt;balrajahlawat&lt;/A&gt;‌ would change "Wright John" to "nhoJ thgirW"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You would need to flag which names are in the wrong order in your source data with an additional field. Then use a conditional expression to identify whether you use +1 or -1 in the subfield command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some names are indeterminate&amp;nbsp;&amp;nbsp;&amp;nbsp; for example&amp;nbsp; Meredith John or John Meredith - which one is surname first?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 12:49:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table/m-p/1027140#M936141</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2016-02-25T12:49:11Z</dc:date>
    </item>
  </channel>
</rss>

