<?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: How to: create custom field that selects specific elements in other fields in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-create-custom-field-that-selects-specific-elements-in/m-p/254538#M1194002</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I have misunderstood your question &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/shocked.png" /&gt; and my apologies for wrong answer.&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Jun 2011 02:42:14 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-06-01T02:42:14Z</dc:date>
    <item>
      <title>How to: create custom field that selects specific elements in other fields</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-custom-field-that-selects-specific-elements-in/m-p/254534#M1193992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose the following: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;We already have a field containing a large amount of dates in the example 2002-04-03, 2005-12-19, 2010-10-09 etc. &lt;/LI&gt;&lt;LI&gt;What I want is to create a custom field containing elements such as 2002-Q1, 2003-Q4, 2009-Q2, 2011-Q3 etc.&lt;/LI&gt;&lt;LI&gt;When selecting the fields in #2 above I would like that all the corresponding elements in the field mentioned in #1 to be selected&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help appreciated &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 May 2011 14:13:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-custom-field-that-selects-specific-elements-in/m-p/254534#M1193992</guid>
      <dc:creator />
      <dc:date>2011-05-31T14:13:08Z</dc:date>
    </item>
    <item>
      <title>How to: create custom field that selects specific elements in other fields</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-custom-field-that-selects-specific-elements-in/m-p/254535#M1193993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is it already a date or just a string? &lt;/P&gt;&lt;P&gt;if it`s only a string you need to include a field like this:&lt;/P&gt;&lt;P&gt;I will assume that you field is called DATE&lt;/P&gt;&lt;P&gt;Load (etc ... ),&lt;/P&gt;&lt;P&gt;LEFT( DATE,4) &amp;amp; '-Q'&amp;amp; CEIL( NUM( MONTH( date#(DATE, 'YYYY-MM-DD') )) /3) AS YearQuarter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from / resident (etc...) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it`s already a date, it can be just:&lt;/P&gt;&lt;P&gt;year(DATE) &amp;amp; '-Q'&amp;amp; CEIL( NUM(MONTH(DATE))/3) AS YearQuarter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 May 2011 15:03:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-custom-field-that-selects-specific-elements-in/m-p/254535#M1193993</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2011-05-31T15:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to: create custom field that selects specific elements in other fields</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-custom-field-that-selects-specific-elements-in/m-p/254536#M1193994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, If i understood your question properly. Qlikview will always work as per you are execting, if you have proper association between the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take for example you have date as folows&amp;nbsp; 2002-04-03, 2005-12-19, 2010-10-09, if you create year out of it and selected 2002, it would always select 2002-04-03.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope i have understood your question, if not correct me by rephrasing your question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 May 2011 15:07:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-custom-field-that-selects-specific-elements-in/m-p/254536#M1193994</guid>
      <dc:creator />
      <dc:date>2011-05-31T15:07:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to: create custom field that selects specific elements in other fields</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-custom-field-that-selects-specific-elements-in/m-p/254537#M1193997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That worked like a charm, thank you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 May 2011 15:24:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-custom-field-that-selects-specific-elements-in/m-p/254537#M1193997</guid>
      <dc:creator />
      <dc:date>2011-05-31T15:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to: create custom field that selects specific elements in other fields</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-custom-field-that-selects-specific-elements-in/m-p/254538#M1194002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I have misunderstood your question &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/shocked.png" /&gt; and my apologies for wrong answer.&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2011 02:42:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-custom-field-that-selects-specific-elements-in/m-p/254538#M1194002</guid>
      <dc:creator />
      <dc:date>2011-06-01T02:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to: create custom field that selects specific elements in other fields</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-custom-field-that-selects-specific-elements-in/m-p/254539#M1194005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dont be! The more the merrier &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; I appreciate all the help I can get!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2011 08:28:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-custom-field-that-selects-specific-elements-in/m-p/254539#M1194005</guid>
      <dc:creator />
      <dc:date>2011-06-01T08:28:06Z</dc:date>
    </item>
  </channel>
</rss>

