<?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: remove id's from full name column in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/remove-id-s-from-full-name-column/m-p/2107661#M90451</link>
    <description>&lt;P&gt;Actually its like&amp;nbsp;&lt;/P&gt;
&lt;P&gt;rxm800&lt;/P&gt;
&lt;P&gt;pop000&lt;/P&gt;
&lt;P&gt;xmf567&lt;/P&gt;
&lt;P&gt;bgt567&lt;/P&gt;
&lt;P&gt;mji&lt;/P&gt;
&lt;P&gt;Abhay mishra&lt;/P&gt;
&lt;P&gt;zoya khan&lt;/P&gt;
&lt;P&gt;andrew rom&lt;/P&gt;
&lt;P&gt;jeeffrey hebat&lt;/P&gt;
&lt;P&gt;so i want to remove all the ids from the list how can i do that&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 21 Aug 2023 09:45:41 GMT</pubDate>
    <dc:creator>ritumishra01</dc:creator>
    <dc:date>2023-08-21T09:45:41Z</dc:date>
    <item>
      <title>remove id's from full name column</title>
      <link>https://community.qlik.com/t5/App-Development/remove-id-s-from-full-name-column/m-p/2107627#M90444</link>
      <description>&lt;P&gt;while pulling data from source i am even getting id's like pcd090 , pcm090, rxm987, wvx098, and many more i want to remove these ids and only get the first and last name in my full name column.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;how can i achieve that&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2023 08:37:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/remove-id-s-from-full-name-column/m-p/2107627#M90444</guid>
      <dc:creator>ritumishra01</dc:creator>
      <dc:date>2023-08-21T08:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: remove id's from full name column</title>
      <link>https://community.qlik.com/t5/App-Development/remove-id-s-from-full-name-column/m-p/2107640#M90446</link>
      <description>&lt;P&gt;Hi, let assume in source you have name in format 'XXXXXX Name Surname', where these XXXXXX are your 6 symbol ids. To get just 'Name Surname' you can take rest of your source name by ignoring first 6 symbols, something like this:&lt;/P&gt;
&lt;P&gt;=trim(mid(name, 7, len(name)))&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2023 09:08:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/remove-id-s-from-full-name-column/m-p/2107640#M90446</guid>
      <dc:creator>justISO</dc:creator>
      <dc:date>2023-08-21T09:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: remove id's from full name column</title>
      <link>https://community.qlik.com/t5/App-Development/remove-id-s-from-full-name-column/m-p/2107661#M90451</link>
      <description>&lt;P&gt;Actually its like&amp;nbsp;&lt;/P&gt;
&lt;P&gt;rxm800&lt;/P&gt;
&lt;P&gt;pop000&lt;/P&gt;
&lt;P&gt;xmf567&lt;/P&gt;
&lt;P&gt;bgt567&lt;/P&gt;
&lt;P&gt;mji&lt;/P&gt;
&lt;P&gt;Abhay mishra&lt;/P&gt;
&lt;P&gt;zoya khan&lt;/P&gt;
&lt;P&gt;andrew rom&lt;/P&gt;
&lt;P&gt;jeeffrey hebat&lt;/P&gt;
&lt;P&gt;so i want to remove all the ids from the list how can i do that&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2023 09:45:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/remove-id-s-from-full-name-column/m-p/2107661#M90451</guid>
      <dc:creator>ritumishra01</dc:creator>
      <dc:date>2023-08-21T09:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: remove id's from full name column</title>
      <link>https://community.qlik.com/t5/App-Development/remove-id-s-from-full-name-column/m-p/2107684#M90454</link>
      <description>&lt;P&gt;HI&lt;/P&gt;
&lt;P&gt;if Id has atleast one number, then try like below&lt;/P&gt;
&lt;P&gt;If(Keepchar(field, 0123456789), '', field) as FullName&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2023 10:09:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/remove-id-s-from-full-name-column/m-p/2107684#M90454</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2023-08-21T10:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: remove id's from full name column</title>
      <link>https://community.qlik.com/t5/App-Development/remove-id-s-from-full-name-column/m-p/2107697#M90456</link>
      <description>&lt;P&gt;in this case (and if we think, that 'mji' is not 'correct' full name), I would take only rows where is 'space' symbol somewhere in between (separating name and surname), like this:&lt;/P&gt;
&lt;P&gt;WHERE index(trim(name), ' ')&amp;gt;0&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2023 10:21:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/remove-id-s-from-full-name-column/m-p/2107697#M90456</guid>
      <dc:creator>justISO</dc:creator>
      <dc:date>2023-08-21T10:21:33Z</dc:date>
    </item>
  </channel>
</rss>

