<?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: Adding new value to the column through script. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Adding-new-value-to-the-column-through-script/m-p/911876#M652677</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load [Gender type ] resident tab1;&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;Load 'NA' as [Gender type ];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Jul 2015 14:19:45 GMT</pubDate>
    <dc:creator>alexandros17</dc:creator>
    <dc:date>2015-07-23T14:19:45Z</dc:date>
    <item>
      <title>Adding new value to the column through script.</title>
      <link>https://community.qlik.com/t5/QlikView/Adding-new-value-to-the-column-through-script/m-p/911875#M652676</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;I have a field called Gender type with values Male and Female.I want to add one more value called 'NA' to the filed Gender Type.How can I do this through sctipting,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex.List box.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Gender type &lt;/P&gt;&lt;P&gt; Male&lt;/P&gt;&lt;P&gt; Female.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want this list box look like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gender Type&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Male&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Female&lt;/P&gt;&lt;P&gt;NA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 14:17:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adding-new-value-to-the-column-through-script/m-p/911875#M652676</guid>
      <dc:creator />
      <dc:date>2015-07-23T14:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new value to the column through script.</title>
      <link>https://community.qlik.com/t5/QlikView/Adding-new-value-to-the-column-through-script/m-p/911876#M652677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load [Gender type ] resident tab1;&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;Load 'NA' as [Gender type ];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 14:19:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adding-new-value-to-the-column-through-script/m-p/911876#M652677</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2015-07-23T14:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new value to the column through script.</title>
      <link>https://community.qlik.com/t5/QlikView/Adding-new-value-to-the-column-through-script/m-p/911877#M652678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another version:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tab:&lt;/P&gt;&lt;P&gt;load * inline [&lt;/P&gt;&lt;P&gt;gender&lt;/P&gt;&lt;P&gt;male&lt;/P&gt;&lt;P&gt;female&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;load * inline [&lt;/P&gt;&lt;P&gt;gender&lt;/P&gt;&lt;P&gt;NA&lt;/P&gt;&lt;P&gt;] ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 14:28:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adding-new-value-to-the-column-through-script/m-p/911877#M652678</guid>
      <dc:creator>Qrishna</dc:creator>
      <dc:date>2015-07-23T14:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new value to the column through script.</title>
      <link>https://community.qlik.com/t5/QlikView/Adding-new-value-to-the-column-through-script/m-p/911878#M652679</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;This will work &lt;/P&gt;&lt;P&gt;GENDER:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Gender&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Male&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Female&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;Concatenate(GENDER)&lt;/P&gt;&lt;P&gt;LOAD * Inline [ &lt;/P&gt;&lt;P&gt;Gender&lt;/P&gt;&lt;P&gt;'NA'&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 21:38:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adding-new-value-to-the-column-through-script/m-p/911878#M652679</guid>
      <dc:creator>Gabriel</dc:creator>
      <dc:date>2015-07-23T21:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new value to the column through script.</title>
      <link>https://community.qlik.com/t5/QlikView/Adding-new-value-to-the-column-through-script/m-p/911879#M652680</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;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG style="font-size: 10pt;"&gt;Load&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;SPAN style="color: #800000;"&gt;Name&lt;/SPAN&gt;,&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;If&lt;/SPAN&gt;(&lt;SPAN style="color: #0000ff;"&gt;Match&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;Gender&lt;/SPAN&gt;,'Male','Female'),&lt;SPAN style="color: #800000;"&gt;Gender&lt;/SPAN&gt;,'NA') &lt;SPAN style="color: #0000ff;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Gender&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;Inline&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;[&lt;BR /&gt; Name,Gender&lt;BR /&gt; Maria,Female&lt;BR /&gt; Mario,Male&lt;BR /&gt; Andrea,&lt;BR /&gt; John,Male&lt;BR /&gt; Bibi,&lt;BR /&gt; ]&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;IMG alt="Immagine.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/93839_Immagine.png" style="height: auto;" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 22:05:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adding-new-value-to-the-column-through-script/m-p/911879#M652680</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2015-07-23T22:05:19Z</dc:date>
    </item>
  </channel>
</rss>

