<?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: Field selection using two criteria: one simple and one complex in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Field-selection-using-two-criteria-one-simple-and-one-complex/m-p/1554635#M744952</link>
    <description>&lt;P&gt;Dim1: Year&lt;/P&gt;&lt;P&gt;Dim2: ID_persona&lt;/P&gt;&lt;P&gt;Expression:&lt;/P&gt;&lt;P&gt;&lt;FONT size="5"&gt;&lt;FONT color="#0000ff"&gt;if&lt;/FONT&gt;(&lt;FONT color="#800000"&gt;Year&lt;/FONT&gt;=&lt;FONT color="#0000ff"&gt;min&lt;/FONT&gt;({&amp;lt;&lt;FONT color="#800000"&gt;Retired&lt;/FONT&gt;={&lt;FONT color="#800000"&gt;"Yes"&lt;/FONT&gt;}&amp;gt;}&lt;FONT color="#0000ff"&gt;total&lt;/FONT&gt; &amp;lt;&lt;FONT color="#800000"&gt;ID_persona&lt;/FONT&gt;&amp;gt; &lt;FONT color="#800000"&gt;Year&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="1"&gt;&lt;FONT size="5"&gt;),&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="5"&gt;'Yes'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="5"&gt;)&lt;/FONT&gt; &lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 11 Mar 2019 00:20:49 GMT</pubDate>
    <dc:creator>NZFei</dc:creator>
    <dc:date>2019-03-11T00:20:49Z</dc:date>
    <item>
      <title>Field selection using two criteria: one simple and one complex</title>
      <link>https://community.qlik.com/t5/QlikView/Field-selection-using-two-criteria-one-simple-and-one-complex/m-p/1554598#M744949</link>
      <description>&lt;P&gt;I have a table with year, people ID, and a column that says if he/she is retired or not.&lt;/P&gt;&lt;P&gt;People retired is acumulated every year. So at 2020, the table shows people retired during 2018, 2019 and 2020.&lt;/P&gt;&lt;P&gt;I want to show, per year, only the ID of new people retired, excluding people retired during previous years. I attach an excel sheet with the original table, the filter I need an the final answer desired.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 04:13:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-selection-using-two-criteria-one-simple-and-one-complex/m-p/1554598#M744949</guid>
      <dc:creator>MarcosSanz</dc:creator>
      <dc:date>2024-11-16T04:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: Field selection using two criteria: one simple and one complex</title>
      <link>https://community.qlik.com/t5/QlikView/Field-selection-using-two-criteria-one-simple-and-one-complex/m-p/1554600#M744950</link>
      <description>Derive the retired year as separate field in the script and use this year as dimension</description>
      <pubDate>Sun, 10 Mar 2019 13:10:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-selection-using-two-criteria-one-simple-and-one-complex/m-p/1554600#M744950</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2019-03-10T13:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: Field selection using two criteria: one simple and one complex</title>
      <link>https://community.qlik.com/t5/QlikView/Field-selection-using-two-criteria-one-simple-and-one-complex/m-p/1554601#M744951</link>
      <description>e. g. like&lt;BR /&gt;&lt;BR /&gt;Left Join (tabPeople)&lt;BR /&gt;LOAD ID_persona,&lt;BR /&gt;Min(Year) as RetiredYear&lt;BR /&gt;Resident tabPeople&lt;BR /&gt;Where Retired = 'Yes'&lt;BR /&gt;Group By ID_persona ;</description>
      <pubDate>Sun, 10 Mar 2019 13:15:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-selection-using-two-criteria-one-simple-and-one-complex/m-p/1554601#M744951</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2019-03-10T13:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: Field selection using two criteria: one simple and one complex</title>
      <link>https://community.qlik.com/t5/QlikView/Field-selection-using-two-criteria-one-simple-and-one-complex/m-p/1554635#M744952</link>
      <description>&lt;P&gt;Dim1: Year&lt;/P&gt;&lt;P&gt;Dim2: ID_persona&lt;/P&gt;&lt;P&gt;Expression:&lt;/P&gt;&lt;P&gt;&lt;FONT size="5"&gt;&lt;FONT color="#0000ff"&gt;if&lt;/FONT&gt;(&lt;FONT color="#800000"&gt;Year&lt;/FONT&gt;=&lt;FONT color="#0000ff"&gt;min&lt;/FONT&gt;({&amp;lt;&lt;FONT color="#800000"&gt;Retired&lt;/FONT&gt;={&lt;FONT color="#800000"&gt;"Yes"&lt;/FONT&gt;}&amp;gt;}&lt;FONT color="#0000ff"&gt;total&lt;/FONT&gt; &amp;lt;&lt;FONT color="#800000"&gt;ID_persona&lt;/FONT&gt;&amp;gt; &lt;FONT color="#800000"&gt;Year&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="1"&gt;&lt;FONT size="5"&gt;),&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="5"&gt;'Yes'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="5"&gt;)&lt;/FONT&gt; &lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 00:20:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-selection-using-two-criteria-one-simple-and-one-complex/m-p/1554635#M744952</guid>
      <dc:creator>NZFei</dc:creator>
      <dc:date>2019-03-11T00:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: Field selection using two criteria: one simple and one complex</title>
      <link>https://community.qlik.com/t5/QlikView/Field-selection-using-two-criteria-one-simple-and-one-complex/m-p/1554723#M744953</link>
      <description>&lt;P&gt;Thank you very much. It works!&lt;/P&gt;&lt;P&gt;Now I have to understand better how &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 09:54:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-selection-using-two-criteria-one-simple-and-one-complex/m-p/1554723#M744953</guid>
      <dc:creator>MarcosSanz</dc:creator>
      <dc:date>2019-03-11T09:54:14Z</dc:date>
    </item>
  </channel>
</rss>

