<?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 Newfield Creation for Same Field name in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Newfield-Creation-for-Same-Field-name/m-p/1561841#M441351</link>
    <description>&lt;P&gt;Hi, I have a table with data as below,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;load * inline [&lt;/P&gt;&lt;P&gt;A,B,C&lt;/P&gt;&lt;P&gt;Arun,100,CD&lt;/P&gt;&lt;P&gt;Arjun,80,CD1&lt;/P&gt;&lt;P&gt;Jinu,60,CD2&lt;/P&gt;&lt;P&gt;Ram,90,CD&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Desired output :&lt;/P&gt;&lt;P&gt;A,B,C&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Arun,100,CD&lt;/P&gt;&lt;P&gt;Arjun,80,CD1&lt;/P&gt;&lt;P&gt;Jinu,60,CD2&lt;/P&gt;&lt;P&gt;Ram,90,CD&lt;/P&gt;&lt;P&gt;Arun,100,CDNE&lt;/P&gt;&lt;P&gt;Ram,90,CDNE&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to get the desired 2 records which falls under CD has to come under new CDNE also.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 27 Mar 2019 11:30:07 GMT</pubDate>
    <dc:creator>pradeep92</dc:creator>
    <dc:date>2019-03-27T11:30:07Z</dc:date>
    <item>
      <title>Newfield Creation for Same Field name</title>
      <link>https://community.qlik.com/t5/QlikView/Newfield-Creation-for-Same-Field-name/m-p/1561841#M441351</link>
      <description>&lt;P&gt;Hi, I have a table with data as below,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;load * inline [&lt;/P&gt;&lt;P&gt;A,B,C&lt;/P&gt;&lt;P&gt;Arun,100,CD&lt;/P&gt;&lt;P&gt;Arjun,80,CD1&lt;/P&gt;&lt;P&gt;Jinu,60,CD2&lt;/P&gt;&lt;P&gt;Ram,90,CD&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Desired output :&lt;/P&gt;&lt;P&gt;A,B,C&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Arun,100,CD&lt;/P&gt;&lt;P&gt;Arjun,80,CD1&lt;/P&gt;&lt;P&gt;Jinu,60,CD2&lt;/P&gt;&lt;P&gt;Ram,90,CD&lt;/P&gt;&lt;P&gt;Arun,100,CDNE&lt;/P&gt;&lt;P&gt;Ram,90,CDNE&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to get the desired 2 records which falls under CD has to come under new CDNE also.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2019 11:30:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Newfield-Creation-for-Same-Field-name/m-p/1561841#M441351</guid>
      <dc:creator>pradeep92</dc:creator>
      <dc:date>2019-03-27T11:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: Newfield Creation for Same Field name</title>
      <link>https://community.qlik.com/t5/QlikView/Newfield-Creation-for-Same-Field-name/m-p/1561844#M441352</link>
      <description>&lt;P&gt;May be this&lt;/P&gt;&lt;PRE&gt;Table:
LOAD * INLINE [
A,B,C
Arun,100,CD
Arjun,80,CD1
Jinu,60,CD2
Ram,90,CD
];

Concatenate (Table)
LOAD A,
  B,
  'CDNE' as C
Resident Table
Where C = 'CD';&lt;/PRE&gt;</description>
      <pubDate>Wed, 27 Mar 2019 11:40:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Newfield-Creation-for-Same-Field-name/m-p/1561844#M441352</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-03-27T11:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: Newfield Creation for Same Field name</title>
      <link>https://community.qlik.com/t5/QlikView/Newfield-Creation-for-Same-Field-name/m-p/1561848#M441355</link>
      <description>&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;T1:&lt;BR /&gt;load * inline [&lt;BR /&gt;A,B,C&lt;BR /&gt;Arun,100,CD&lt;BR /&gt;Arjun,80,CD1&lt;BR /&gt;Jinu,60,CD2&lt;BR /&gt;Ram,90,CD&lt;BR /&gt;];&lt;BR /&gt;Concatenate&lt;BR /&gt;Load A,&lt;BR /&gt;B,&lt;BR /&gt;C&amp;amp;'NE' as C&lt;BR /&gt;Resident T1 where C='CD';&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2019 11:38:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Newfield-Creation-for-Same-Field-name/m-p/1561848#M441355</guid>
      <dc:creator>raman_rastogi</dc:creator>
      <dc:date>2019-03-27T11:38:41Z</dc:date>
    </item>
  </channel>
</rss>

