<?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: selection in a new field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/selection-in-a-new-field/m-p/272670#M102077</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'm not sure to understand what you want ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did you mean :&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;if(ID&amp;gt;200, ID) as RecordBigger200 &lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Jul 2011 15:42:42 GMT</pubDate>
    <dc:creator>martin59</dc:creator>
    <dc:date>2011-07-11T15:42:42Z</dc:date>
    <item>
      <title>selection in a new field</title>
      <link>https://community.qlik.com/t5/QlikView/selection-in-a-new-field/m-p/272669#M102076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi everyone, &lt;/P&gt;&lt;P&gt;I am a new Qlikview user.. And I need help...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to get the record which is bigger than for example 200 in a new field. How can I do this? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Person:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;ID, &lt;BR /&gt;Name,&lt;BR /&gt;Surname,&lt;BR /&gt;if(ID&amp;gt;100, 'under 30 year old', ... ) as Younger30; ----&amp;gt; here I want a new Field that shows under 30 years old people... with Name, ID etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL Select*&lt;BR /&gt;From Person;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Can anybody help me? I just wannt to have a new field with this selection, it is possible to do that? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2011 15:04:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/selection-in-a-new-field/m-p/272669#M102076</guid>
      <dc:creator />
      <dc:date>2011-07-11T15:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: selection in a new field</title>
      <link>https://community.qlik.com/t5/QlikView/selection-in-a-new-field/m-p/272670#M102077</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'm not sure to understand what you want ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did you mean :&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;if(ID&amp;gt;200, ID) as RecordBigger200 &lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2011 15:42:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/selection-in-a-new-field/m-p/272670#M102077</guid>
      <dc:creator>martin59</dc:creator>
      <dc:date>2011-07-11T15:42:42Z</dc:date>
    </item>
    <item>
      <title>Re: selection in a new field</title>
      <link>https://community.qlik.com/t5/QlikView/selection-in-a-new-field/m-p/272671#M102078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are in the right track. The script, if I understand you correctly, will be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;Person:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;Load &lt;/STRONG&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;ID, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Surname,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(ID&amp;gt;100, 'under 30 year old',&lt;SPAN style="color: #ff0000;"&gt;if(ID&amp;gt;200,'60+,'Other')&lt;/SPAN&gt;) as Younger30; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;SQL Select*&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;From Person;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2011 15:57:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/selection-in-a-new-field/m-p/272671#M102078</guid>
      <dc:creator>nagaiank</dc:creator>
      <dc:date>2011-07-11T15:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: selection in a new field</title>
      <link>https://community.qlik.com/t5/QlikView/selection-in-a-new-field/m-p/272672#M102079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; First, Thank you for your help. I know how if - clause is working... Sorry, that I didn't explain correctly....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what I mean&amp;nbsp; is: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with the new selection... ( if then else) I would like to create in the table or in a new table a new field, which just shows the years under 30 years old.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2011 16:23:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/selection-in-a-new-field/m-p/272672#M102079</guid>
      <dc:creator />
      <dc:date>2011-07-11T16:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: selection in a new field</title>
      <link>https://community.qlik.com/t5/QlikView/selection-in-a-new-field/m-p/272673#M102080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you have to do something like this after your first load script :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Younger30:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;ID,&lt;/P&gt;&lt;P&gt;ID as IDYounger30,&lt;/P&gt;&lt;P&gt;Name as NameYounger30,&lt;/P&gt;&lt;P&gt;Surname as SurnameYounger30&lt;/P&gt;&lt;P&gt;RESIDENT Person&lt;/P&gt;&lt;P&gt;WHERE Younger30 = 'under30 year old';&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2011 16:31:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/selection-in-a-new-field/m-p/272673#M102080</guid>
      <dc:creator>martin59</dc:creator>
      <dc:date>2011-07-11T16:31:12Z</dc:date>
    </item>
    <item>
      <title>selection in a new field</title>
      <link>https://community.qlik.com/t5/QlikView/selection-in-a-new-field/m-p/272674#M102081</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, 11 Jul 2011 16:44:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/selection-in-a-new-field/m-p/272674#M102081</guid>
      <dc:creator />
      <dc:date>2011-07-11T16:44:53Z</dc:date>
    </item>
  </channel>
</rss>

